Skip to content

Instantly share code, notes, and snippets.

@asandroq
Created April 11, 2010 00:44
Show Gist options
  • Save asandroq/362407 to your computer and use it in GitHub Desktop.
Save asandroq/362407 to your computer and use it in GitHub Desktop.
> (##expand-code '(or temp (let ((temp (* 2 3))) (and alex temp))))
((lambda (tempv1)
(if tempv1
tempv1
((lambda (tempv2) ((lambda (tempv3) (if tempv3 tempv2 tempv3)) alex))
(* '2 '3))))
temp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment