mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-11 04:38:59 +01:00
6 lines
121 B
Erlang
6 lines
121 B
Erlang
% what a weird language ... :-)
|
|
|
|
-module(hello).
|
|
-export([hello_world/0]).
|
|
hello_world() -> io:fwrite("hello, world\n").
|