Skip to content

Instantly share code, notes, and snippets.

@nox
Created June 12, 2012 10:02
Show Gist options
  • Save nox/2916684 to your computer and use it in GitHub Desktop.
Save nox/2916684 to your computer and use it in GitHub Desktop.
$ 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