Created
January 30, 2019 21:29
-
-
Save stassats/97fd1baf5ecec57983e2f21cfa52b319 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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