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.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 448 - 478 of 500   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
Online Now 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
Online Now 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
475
Hi all, A Scheme/Functional programming event will be held on Saturday, October 25th. The program is intended to give an introduction to functional programing...
Vijay Mathew
vijaymathewp
Offline Send Email
Oct 20, 2008
8:08 am
476
On Mon, Oct 20, 2008 at 1:38 PM, Vijay Mathew ... So, what happened here? -- Roshan Mathews...
Roshan Mathews
roshmathews
Offline Send Email
Nov 4, 2008
2:04 pm
477
... October ... programing and ... Roshan, The meeting was really great and, surprisingly, had many capable functional programmers present. The demos/talks...
Thomas Elam
tomelam
Offline Send Email
Nov 10, 2008
5:40 am
478
Hi, Does anyone know where I can buy a copy of little schemer and How to Design Programs?? Goutham...
Goutham D L
gouthamdl
Offline Send Email
Nov 27, 2008
1:39 pm
Messages 448 - 478 of 500   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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