Tagged Questions

6
votes
2answers
975 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 ...