Files
hk1234566/task1/SCC_212_Advanced_Programming_Weeks_7/hello.erl
louiscklaw d6e3882dd7 update,
2025-02-01 02:01:54 +08:00

6 lines
94 B
Erlang

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