Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- vi helloworld.erl
- hello world program
- -module(helloworld).
- -export([start/0]).
- start() ->
- io:fwrite("Hello World!\n").
- erlc helloworld.erl
- erl -noshell -s helloworld start -s init stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement