Search found 7 matches

by aaronla
Tue Aug 30, 2011 1:53 am
Forum: Other Tools
Topic: Common Lisp to Scheme
Replies: 3
Views: 31055

Re: Common Lisp to Scheme

You can use Hyperpolyglot if looking to translate by hand: http://hyperpolyglot.org/lisp
by aaronla
Wed May 27, 2009 10:24 pm
Forum: Lisp Quiz
Topic: Lisp Quiz #2?
Replies: 9
Views: 58398

Re: Lisp Quiz #2?

Unne, i really liked the use of iterate, I think it's a great example of lazy infinite sequences. Can you post a quiz next?

(simon, yours was really cool too, but I had to pick one)
by aaronla
Sat May 16, 2009 8:24 pm
Forum: Lisp Quiz
Topic: Lisp Quiz #2?
Replies: 9
Views: 58398

Re: Lisp Quiz #2?

@unne - i wasn't able to run your code because it appears I don't have the contrib libraries. Is that something you have to download separately? I haven't really done much with clojure yet, other than install it and run thru the first tutorial page. Heh, yeah, the 'do's and 'let's can be a bit dizzy...
by aaronla
Fri May 01, 2009 11:48 pm
Forum: Lisp Quiz
Topic: Lisp Quiz #2?
Replies: 9
Views: 58398

Re: Lisp Quiz #2?

And the no-spoiler period is up. (although we should try to get the next no-spoiler period to expire on Monday next time, as is customary). Don't want to clutter up things much, but I can't resist throwing my chip in: http://codepad.org/rk6S6he9 . Style feedback most welcome -- I'd like to know if m...
by aaronla
Thu Apr 30, 2009 12:35 am
Forum: Lisp Quiz
Topic: Lisp Quiz #2?
Replies: 9
Views: 58398

Lisp Quiz #2?

Wow, this area is dead. I liked the first post, but to be honest, I'm very much in the beginners category for both Common Lisp and Scheme. Seeing as the last thread was started a good 3/4 yr previous, thought it couldn't hurt to post another. Either everyone has left the LispForum-Quiz-of-the-delta-...
by aaronla
Wed Apr 29, 2009 11:27 pm
Forum: Scheme
Topic: Problems with list of list of list of list...
Replies: 1
Views: 6924

Re: Problems with list of list of list of list...

You're actually quite close, except in this step near line 72 (map (lambda (r) (find-routes r flight-plan)) found-routes) Bear with me: A route is a list of strings. found-routes is a list of routes.. call this type (list route). the lambda will be invoked with r of type 'route', and find-routes ret...
by aaronla
Fri Jan 02, 2009 3:46 am
Forum: Common Lisp
Topic: Poll: Which Lisp implementations do you use?
Replies: 32
Views: 92991

Re: Poll: Which Lisp implementations do you use?

I'm using ECL and SBCL on Windows. I'm favoring ECL, but would probably choose SBCL for anything with non-trivial performance goals -- right now, I'm just learning Common Lisp and prototyping.