Skip to content

Instantly share code, notes, and snippets.

@mszajna
Last active February 22, 2018 01:37
Show Gist options
  • Save mszajna/c32c02811deb69f42df38d7bd4054ebe to your computer and use it in GitHub Desktop.
Save mszajna/c32c02811deb69f42df38d7bd4054ebe to your computer and use it in GitHub Desktop.
Clojure record that is also a function
(defrecord Foo [state]
clojure.lang.IFn
(invoke [this]
(println "my state is" state)))
;; Try it out!
((->Foo "foo"))
my state is foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment