Name: Alexander Dubček 2015-03-24 6:14
I wrote a toy Lisp interpreter this weekend. Programming is pretty much a video game!
https://bitbucket.org/dhoskin/thp
https://bitbucket.org/dhoskin/thp
(LET ((f (LAMBDA (x) (IF (x (f (CDR x))) recursion!))))
(f (QUOTE (a b c d e))))
→ args: ((a b c d e))
→ args: ((b c d e))
→ args: ((c d e))
→ args: ((d e))
→ args: ((e))
→ args: (nil)
→ recursion!