Guest User

Untitled

a guest
Dec 10th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. (defmacro with-x (login pass &rest body)
  2. `(let ((the-connection (connect ,login ,pass)
  3. ,@body))
  4.  
  5. (defun test ()
  6. (with-x "name" "pass"
  7. (do-something the-connection)))
Add Comment
Please, Sign In to add comment