Tagged Questions
10
votes
1answer
1k views
What does this xkcd code do?
On the xkcd site today, the following appeared as a joke in a <script language="scheme"> tag
so what does the following code do / represent?
(define
(eval exp env)
(cond ((self-evaluating? ...
6
votes
2answers
964 views
Executes a function until it returns a nil, collecting its values into a list
I got this idea from XKCD's Hofstadter comic; what's the best way to create a conditional loop in (any) Lisp dialect that executes a function until it returns NIL at which time it collects the ...