You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
283 B
Plaintext

# swipl
# SWI-Prolog is a versatile implementation of the Prolog language.
# run Prolog interpreter in interactive mode
swipl
# consult file.pl, run goal mygoal(3,foo)
# and then halt the interpreter without entering interactive mode
swipl -s file.pl -g "mygoal(3,foo)." -t halt.