5 lines
75 B
Prolog
5 lines
75 B
Prolog
:- initialization(main).
|
|
|
|
main :- write(10),
|
|
nl,
|
|
write(hello(world)).
|