Created
September 4, 2010 13:52
-
-
Save vito/565200 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
atomo $ atomo examples/error.atomo | |
traceback: | |
"examples/error.atomo" (line 6, column 1) | |
{ a print } call | |
... internal ... | |
"examples/error.atomo" (line 6, column 3) | |
a print | |
"examples/error.atomo" (line 6, column 3) | |
a | |
"examples/error.atomo" (line 1, column 6) | |
b | |
"examples/error.atomo" (line 2, column 6) | |
c | |
"examples/error.atomo" (line 3, column 6) | |
d | |
"examples/error.atomo" (line 4, column 6) | |
foo | |
message not understood: | |
<object> foo | |
atomo $ |
This file contains hidden or 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
a := b | |
b := c | |
c := d | |
d := foo -- error; foo is undefined | |
{ a print } call |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment