2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

corrected hello world

This commit is contained in:
Martin Thoma 2014-08-12 20:02:43 -04:00
parent a3543e94da
commit 42bc0486b6

View file

@ -1,2 +1,3 @@
:- initialization(main).
main :- write('Hello World!'), nl, halt.
#!/usr/bin/swipl -q -t main -f
main :- writeln('Hello world!').