Created
April 15, 2010 15:38
-
-
Save drewr/367250 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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