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

2 lines
65 B
Perl
Raw Normal View History

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