Skip to content

Instantly share code, notes, and snippets.

@yuanmai
Created August 24, 2012 08:10
Show Gist options
  • Save yuanmai/3447359 to your computer and use it in GitHub Desktop.
Save yuanmai/3447359 to your computer and use it in GitHub Desktop.
Self changing picolisp
;; http://software-lab.de/doc/faq.html#interpreted
(de incMe ()
(do 8
(printsp 0)
(inc (cdadr (cdadr incMe))) ) )
: (incMe)
0 1 2 3 4 5 6 7 -> 8
: (incMe)
8 9 10 11 12 13 14 15 -> 16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment