Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Why doesn't d affect *global* ?
- (defparameter *global* nil)
- (defun a () (push 3 *global*))
- (defun b ()
- (labels ((c () (push 3 *global*)))
- (c)))
- (defun d ()
- (labels ((e (x) (push 3 x)))
- (e *global*)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement