fork download
  1. -module(prog).
  2. -export([main/0]).
  3.  
  4. main() ->
  5. hello(). % OK
  6.  
  7. hello() ->
  8. io:format("Hello World!~n").
Success #stdin #stdout 0.09s 19324KB
stdin
Standard input is empty
stdout
Hello World!