Files
linguist/samples/Erlang/hello.escript
Patrick Reynolds 2db2f5a46d add erlang, more-complex shell examples
- some Erlang and escript files
 - .escript extension
 - .erlang extension
 - shell script with %, ##, name tokens
2013-06-06 15:41:44 -05:00

5 lines
85 B
Erlang
Executable File

#!/usr/bin/env escript
-export([main/1]).
main([]) -> io:format("Hello, World!~n").