Skip to content

Instantly share code, notes, and snippets.

@flazz
Created January 30, 2009 21:12
Show Gist options
  • Save flazz/55261 to your computer and use it in GitHub Desktop.
Save flazz/55261 to your computer and use it in GitHub Desktop.
code for manny
(defun dummy () )
(defun q (g n)
(let ((r (lambda () n)))
(if (not (= n 0))
(q r 0)
(g))))
(q 'dummy 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment