Skip to content

Instantly share code, notes, and snippets.

@asok
Created December 11, 2012 15:20
Show Gist options
  • Save asok/4259269 to your computer and use it in GitHub Desktop.
Save asok/4259269 to your computer and use it in GitHub Desktop.
(defmacro sformat/macro (template values)
`(sformat
,template
(lambda (key) (plist-get ,values (intern key)))))
(sformat/macro
"help ${name}! I'm ${malady}"
'(name "nic" malady "on fire"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment