Skip to content

Instantly share code, notes, and snippets.

@tomjack
Created December 2, 2010 03:25
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 tomjack/0e196e1b27ec25256d2e to your computer and use it in GitHub Desktop.
Save tomjack/0e196e1b27ec25256d2e to your computer and use it in GitHub Desktop.
user> (defrecord Foo [bar]
clojure.lang.IFn
(invoke [_ baz]
(+ bar baz)))
user.Foo
user> ((Foo. 3) 4)
7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment