Skip to content

Instantly share code, notes, and snippets.

@drewr
Created April 15, 2010 15:38
Show Gist options
  • Save drewr/367250 to your computer and use it in GitHub Desktop.
Save drewr/367250 to your computer and use it in GitHub Desktop.
user=> (defrecord Foo [])
user.Foo
user=> (Foo)
java.lang.Exception: Expecting var, but Foo is mapped to class user.Foo (NO_SOURCE_FILE:0)
user=> (defrecord Foo [bar baz])
user.Foo
user=> (Foo 1 2)
java.lang.Exception: Expecting var, but Foo is mapped to class user.Foo (NO_SOURCE_FILE:0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment