Skip to content

Instantly share code, notes, and snippets.

@stassats
Created January 30, 2019 21:29
Show Gist options
  • Save stassats/97fd1baf5ecec57983e2f21cfa52b319 to your computer and use it in GitHub Desktop.
Save stassats/97fd1baf5ecec57983e2f21cfa52b319 to your computer and use it in GitHub Desktop.
(defun test (a b)
(declare (optimize speed (debug 1)))
(labels ((fun ()
10))
(if a
(if b
(+ (fun) 2)
(fun)))))
(defun test (a b)
(declare (optimize speed (debug 1)))
(labels ((fun ()
10))
(if a
(if b
(+ (fun) 2)
(+ (fun) 2)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment