Daily Archives: 2009-02-25

A Tiny Lisp Script

A tiny Lisp script, noticed first in a recent post in comp.lang.lisp and then ported to SBCL: % cat ~/bin/iota #!/usr/local/bin/sbcl –script (defun iota (count &optional (start 0) (step 1)) “Build a list of `count’ numbers, starting from `start’ and … Continue reading

Posted in Computers, Lisp, Programming, Software | Tagged , , , , | 3 Comments