Skip to content

Instantly share code, notes, and snippets.

Created January 23, 2013 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4602823 to your computer and use it in GitHub Desktop.
Save anonymous/4602823 to your computer and use it in GitHub Desktop.
(defn foo
([a]
(println "One arg:" (pr-str a))
(recur ["one" "two"]))
([a b]
(println "Two args:" (pr-str a b))))
(foo "one")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment