1
:-
module
(
hello_world
,
[
print_hello_world
/
0
]
)
.
2
3
print_hello_world
:-
4
write
(
"Hello World"
)
,
nl