lisp123456

Untitled

Oct 19th, 2021
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. (defun test-fn (a)
  2. (let ((x a))
  3. (test-macro)))
  4.  
  5. (defmacro test-macro ()
  6. `(progn
  7. (print "Hello, World!")
  8. (print x)))
Advertisement
Add Comment
Please, Sign In to add comment