These are multiple ways to say Hello World in Erlang:
-module(hello_world). -export([say_it/0]). say_it() -> io:format("Hello World~n", []).
These are multiple ways to say Hello World in Erlang:
-module(hello_world). -export([say_it/0]). say_it() -> io:format("Hello World~n", []).