RosettaCodeData/Task/Hello-world-Text/KL1/hello-world-text.kl1
2023-12-16 21:33:55 -08:00

5 lines
99 B
Text

:- module main.
main :-
unix:unix([stdio(normal(S))]),
S = [fwrite("Hello world\n")].