Skip to content

Instantly share code, notes, and snippets.

@tomjack
Created March 29, 2010 16:25
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save tomjack/c139721c1fdcda8ee34f to your computer and use it in GitHub Desktop.
;; these work
(app ["hi" name] {:get ["hello " name]})
(app ["hi" name] {:get ["hello"]})
;; these throw an exception
(app ["hi" name] {:get [name]})
(app ["hi" name] {:get [(str name)]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment