Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. (defun test (L) (lambda (M) L))
  2.  
  3. (setq L `(1 2 3))
  4. (setq test1 (test L))
  5.  
  6. (write (funcall test1 10)) ; (1 2 3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement