Skip to content

Instantly share code, notes, and snippets.

@edoloughlin
Created January 14, 2011 10:21
Show Gist options
  • Select an option

  • Save edoloughlin/779447 to your computer and use it in GitHub Desktop.

Select an option

Save edoloughlin/779447 to your computer and use it in GitHub Desktop.
user=> (def a 1)
#'user/a
user=> (def b 1)
#'user/b
user=> (defn f [x y z] [x y z])
#'user/f
user=> (f (inc a) (dec b) (+ a b))
[2 0 2]
user=>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment