Skip to content

Instantly share code, notes, and snippets.

@manishym
Created December 17, 2011 04:35
Show Gist options
  • Save manishym/1489201 to your computer and use it in GitHub Desktop.
Save manishym/1489201 to your computer and use it in GitHub Desktop.
Normal order and applicative order - CL
; Ex 1.5 Normal order vs applicative order
(defun p ()
(p))
(defun test (x y)
(if (= x 0)
y
(p)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment