Skip to content

Instantly share code, notes, and snippets.

@radhikalism
Created January 13, 2012 08:06
Show Gist options
  • Save radhikalism/1605054 to your computer and use it in GitHub Desktop.
Save radhikalism/1605054 to your computer and use it in GitHub Desktop.
(defun y (func)
((lambda (x) (funcall x x))
(lambda (y)
(funcall func
(lambda (&rest args)
(apply (funcall y y) args))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment