2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-11 04:38:59 +01:00
waf/playground/erlang/hello.erl
2011-09-10 11:13:51 +02:00

6 lines
121 B
Erlang

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