Skip to content

Instantly share code, notes, and snippets.

@ainame
Created November 9, 2013 13:29
Show Gist options
  • Save ainame/7385437 to your computer and use it in GitHub Desktop.
Save ainame/7385437 to your computer and use it in GitHub Desktop.
(defun func1 (func)
(funcall func))
(defun func2 (func)
(func1
(lambda ()
(funcall func))))
(func2
(lambda ()
'fuck)) ;; => Lisp nesting exceeds `max-lisp-eval-depth'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment