hello world in erlang code example
Example: hello world in erlang
-module(hello).
-export([hello_world/0]).
hello_world() -> io:fwrite("hello, world\n").
-module(hello).
-export([hello_world/0]).
hello_world() -> io:fwrite("hello, world\n").