Search the web
Sign In
New User? Sign Up
bangalore-lisp · The Bangalore Common Lisp Study Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 443 - 474 of 474   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
443
... True. But again, lispers have their own level of thought processes that go compared to a java guy. True java is sellable now, where as lisp sort of is a ...
Mr vijay kumar
vijaykerb
Offline Send Email
May 30, 2007
5:56 pm
444
And Lisp will still be around 100 years from now because its 7 magic axioms are like a law of nature. Java won't be around 100 years from now, if the past 50...
Thomas Elam
tomelam
Offline Send Email
May 31, 2007
5:59 pm
446
"Programmer Job Qualifications. You should have extensive experience coding in languages including C/C++, javascript, and java." ... No Thanks. "Knowledge of...
sanjay.pande
Offline Send Email
Jul 12, 2007
2:47 am
447
Alok, I would also like to know why, since you say you want hackers, are you telling what languages they have to use? Are you the bigger hacker? I have created...
Thomas Elam
tomelam
Offline Send Email
Jul 12, 2007
4:10 am
448
Hi I need to implement a macro similar to the return statement in C. For example, if I call (return nil) inside a function named foo, it should translate to...
Gautham Ganapathy
gauthamg123
Offline Send Email
Aug 21, 2007
2:28 pm
449
... Something like this: http://www.lisp.org/HyperSpec/Body/mac_return.html -- Roshan Mathews...
Roshan Mathews
roshmathews
Offline Send Email
Aug 22, 2007
6:45 am
450
... ok. i assumed that return had to be used with block. didn't see the Notes section Thanks and regards Gautham...
Gautham Ganapathy
gauthamg123
Offline Send Email
Aug 22, 2007
1:18 pm
451
... This can be done by the following macro: (defmacro xreturn(x) (block nil (return x))) Hope this solves the problem. Thanks Samik ... Once upon a time there...
samik chakraborty
samik_126
Offline Send Email
Sep 5, 2007
5:15 am
452
... This can be done by the following macro: (defmacro xreturn(x) (block nil (return x))) Hope this solves the problem. Thanks Samik ... Download prohibited?...
samik chakraborty
samik_126
Offline Send Email
Sep 5, 2007
10:21 am
453
Hi all, I have joined this group and am very new to the LISP programming. Q 1) I want to know how can i call any function? I am using LispWorking as a...
pramod shinde
prmdshinde
Offline Send Email
Sep 10, 2007
1:03 am
454
Hi all, I have joined this group and am very new to the LISP programming. Q 1) I want to know how can i call any function? I am using LispWorks as a...
pramod shinde
prmdshinde
Offline Send Email
Sep 10, 2007
1:11 am
455
With all due respect: RTFM. There are any number of lisp tutorials which should see you past newbie-hood. --chandra...
Chandrashekara K A
chandra_ka
Offline Send Email
Sep 10, 2007
4:30 am
456
Hi Promod, Here are the answers to the best of my knowledge: Q1. Yes you can call a function from any REPL without any problem. I use SBCL+XEmacs in windows...
samik chakraborty
samik_126
Offline Send Email
Sep 10, 2007
4:30 am
457
... Did you evaluate that function definition? Maybe you can try typing the function definition in at the prompt and then calling it. If that works, then it...
Roshan Mathews
roshmathews
Offline Send Email
Sep 10, 2007
7:28 am
458
Thanks samik and chandrashekhara!! Pramod K.Shinde ... From: samik chakraborty <samik_126@...> To: bangalore-lisp@yahoogroups.com Sent: Sunday,...
pramod shinde
prmdshinde
Offline Send Email
Sep 11, 2007
1:03 am
459
Hi all , Can anybody write the recursive function LISP function that will reverse elements of the list(please don't use built-in reverse function).? I have...
pramod shinde
prmdshinde
Offline Send Email
Sep 16, 2007
9:22 pm
460
Hi Pramod, Sorry to spell your name incorrect last time. The following code uses a recursive call to do a reverse of a list only problem is the tr variable it...
samik chakraborty
samik_126
Offline Send Email
Sep 17, 2007
7:12 am
461
Hi Promode, This is an easy way of doing a reverse without using car, cdr or ca*d*r family how ever it does not use any recursion. You can think about it. But...
samik chakraborty
samik_126
Offline Send Email
Sep 17, 2007
7:13 am
462
check the following code .. (defun rev(a) (if (or (null a) (equal a '())) '() (append (rev (cdr a)) (list (first a))))) -- ... Sometimes I wish I was a little...
Rajaram Gaunker
zimbabao
Offline Send Email
Sep 17, 2007
11:51 am
463
Thanks it works..., Is it the same way by which i can find mirror image of the list. ... Expected result is : (((e d)c)(b a)) Pramod K.Shinde ... From: samik...
pramod shinde
prmdshinde
Offline Send Email
Sep 17, 2007
9:33 pm
464
Thanks samik, i m able to do the reverse function: (defun rev (x) (if (endp x) nil (append (rev (cdr x)) (list (car x))))) ... (d a c b a) Pramod K.Shinde ... ...
pramod shinde
prmdshinde
Offline Send Email
Sep 18, 2007
3:53 am
465
... See what happens when I try to compile your MY-REVERSE - ; While compiling MY-REVERSE: Warning: Free reference to undeclared variable TEMP-RET assumed...
Chaitanya Gupta
icehotcg
Offline Send Email
Sep 18, 2007
5:18 am
466
Thanks a lot to all, This mail-chain has produced at least three ways of doing the same thing and all of them are different and elegant. Great going guys......
samik chakraborty
samik_126
Offline Send Email
Sep 18, 2007
6:58 am
467
http://play.org/lisp [you can probably read this last unless you are still not sure you are ready to start learning Lisp] http://play.org/links/lisp-intro ...
Thomas Elam
tomelam
Offline Send Email
Sep 18, 2007
12:13 pm
468
Steve Yegge gives a simple explanation about string & structured-data processing with Lisp: http://steve.yegge.googlepages.com/the-emacs-problem Is anyone here...
Thomas Elam
tomelam
Offline Send Email
Sep 19, 2007
7:33 am
469
... Keeping in mind that elisp is more procedural than functional, Finseth's seminal work [1] on text editing is quite enlightening. Footnotes: [1]...
alephnull@...
alokgs
Offline Send Email
Sep 19, 2007
8:50 pm
470
... Alok, Thanks for the reference. I'll definitely have a look at it. Did you read `The Emacs Problem'? I wouldn't say it's really just about Emacs, but...
Thomas Elam
tomelam
Offline Send Email
Sep 21, 2007
10:15 am
471
Teleonto Technologies Private Ltd., located in Hyderabad, India, builds and delivers an exciting and growing range of analytics for the telecommunications...
c4chakri
Offline Send Email
Feb 28, 2008
12:14 pm
473
You are invited to join personal knowledge network of Rajaram Gaunker on TooStep ... Join my network on TooStep so that we can share knowledge with each other...
Rajaram Gaunker
zimbabao
Offline Send Email
Jun 10, 2008
10:14 am
474
Teleonto Technologies Private Ltd., located in Hyderabad, India, builds and delivers an exciting and growing range of analytics for the telecommunications...
Chakravarthy P
c4chakri
Offline Send Email
Jun 26, 2008
11:43 am
Messages 443 - 474 of 474   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help