Advertisement
Guest User

once-only

a guest
Jun 21st, 2022
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.14 KB | None | 0 0
  1. (defmacro test (arg)
  2.   (once-only (arg)
  3.     `(declare (ignorable ,arg))
  4.     2))
  5.  
  6. CL-USER> (macroexpand-1 '(test 22))
  7. (LET ((#:G800 22))
  8.   2)
  9. T
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement