2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 14:28:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/prolog/hello-world.pl

3 lines
66 B
Perl
Raw Normal View History

2014-02-24 11:44:57 +01:00
:- initialization(main).
main :- write('Hello World!'), nl, halt.