Back
Erlang Editor
Beginner
Run »
Erlang IO
Print "Hello World" in Erlang.
Check Solution
-module(hello). -export([start/0]). start() -> io:fwrite("Hello World\n").