Skip to content

Instantly share code, notes, and snippets.

@wilig
Created August 18, 2010 17:41
Show Gist options
  • Select an option

  • Save wilig/535540 to your computer and use it in GitHub Desktop.

Select an option

Save wilig/535540 to your computer and use it in GitHub Desktop.
(defn- stmt
[& stmts]
(if (vector? (last stmts))
{:stmt (reduce #(str %1 %2) "" (butlast stmts)) :vars (last stmts)}
{:stmt (reduce #(str %1 %2) "" stmts) :vars []}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment