5 lines
99 B
Text
5 lines
99 B
Text
:- module main.
|
|
|
|
main :-
|
|
unix:unix([stdio(normal(S))]),
|
|
S = [fwrite("Hello world\n")].
|