5 lines
108 B
Prolog
5 lines
108 B
Prolog
|
|
first(Predicate) :- call(Predicate).
|
||
|
|
second(Argument) :- write(Argument).
|
||
|
|
|
||
|
|
:-first(second('Hello World!')).
|