IWETHEY v. 0.3.0 | TODO
1,095 registered users | 0 active users | 0 LpH | Statistics
Login | Create New User
IWETHEY Banner

Welcome to IWETHEY!

New I was wrong.
This site is one big huge teaser. Where do I find a good web site/book to learn lisp? I mean real list, the one that produces this kind of code:

(define lookup
(lambda (Var Env Fk)
(Env Var Fk)))

(define mt-env
(lambda ()
(lambda (Var Fk)
(Fk))))

(define extend
(lambda (Env VarN Val)
(lambda (name Fk)
(if (eq? name VarN)
\tVal
\t(Env name Fk)))))

Any suggestions?
New SICP
The classic text for Scheme is [link|http://mitpress.mit.edu/sicp/full-text/sicp/book/book.html|Structure and Interpretation of Computer Programs]
New If you want Common Lisp...
Paul Graham has a couple of [link|http://www.paulgraham.com/paulgraham/books.html|very good books] on the topic.

The one labelled more advanced, is. Though I found both quite readable.

Cheers,
Ben
     Anyone got a good crash primer on OO terminology? - (drewk) - (11)
         Re: Anyone got a good crash primer on OO terminology? - (pwhysall) - (2)
             Oh hush -NT - (drewk)
             You stole my sig! -NT - (tablizer)
         A Couple - (ChrisR) - (7)
             Is this one worth going through? - (drewk) - (6)
                 Geared towards Scheme... - (ChrisR) - (1)
                     Did seem pretty disconnected from *my* "real world" - (drewk)
                 I'll be going through it for sure. - (Arkadiy) - (3)
                     I was wrong. - (Arkadiy) - (2)
                         SICP - (ChrisR)
                         If you want Common Lisp... - (ben_tilly)

Caveat emptor.
91 ms