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