Files
Ciro Santilli 3e40ac19d9 hello-world
2021-03-24 00:00:01 +00:00

9 lines
162 B
Mathematica

:- module hello.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
main(!IO) :-
io.write_string("Hello World\n", !IO).