Skip to content

Instantly share code, notes, and snippets.

@cmoore
Created August 26, 2012 19:50
Show Gist options
  • Save cmoore/3483085 to your computer and use it in GitHub Desktop.
Save cmoore/3483085 to your computer and use it in GitHub Desktop.
To functional, or not to functional...
(defmacro with-x (login pass &rest body)
`(let ((the-connection (connect ,login ,pass)
,@body))
(defun test ()
(with-x "name" "pass"
(do-something the-connection)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment