6 lines
94 B
Erlang
6 lines
94 B
Erlang
-module(hello).
|
|
-export([hello_world/0]).
|
|
|
|
hello_world() ->
|
|
io:fwrite("hello, world\n").
|