| Hosted by CoCalc | Download
1
-module(hello).
2
-export([hello_world/0]).
3
4
hello_world() -> io:fwrite("hello, world\n").
5