Created
June 12, 2012 10:02
-
-
Save nox/2916684 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
$ cat blah.erl | |
-module(blah). | |
-compile(export_all). | |
blah() -> 42; | |
foo(X) -> {bar, X}. | |
$ bin/erlc blah.erl | |
blah.erl:5:1: head mismatch | |
$ bin/erlc blah.erl | |
blah.erl:4:13: wrong end token | |
blah() -> 42; | |
^ | |
. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment