waf/playground/erlang/hello.erl

6 lines
121 B
Erlang

% what a weird language ... :-)
-module(hello).
-export([hello_world/0]).
hello_world() -> io:fwrite("hello, world\n").