Advertisement
krot

Erlang Hello World

Jul 27th, 2019
1,435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 0.19 KB | None | 0 0
  1. vi helloworld.erl
  2.  
  3.  hello world program
  4. -module(helloworld).
  5. -export([start/0]).
  6.  
  7. start() ->
  8. io:fwrite("Hello World!\n").
  9.  
  10. erlc helloworld.erl
  11. erl -noshell -s helloworld start -s init stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement