Here's hello.pl:
main :- write('This is a sample Prolog program'),
write(' This program is written into hello.pl file').
Trying to run hello.pl Welcome to SWI-Prolog (threaded, 64 bits, version 9.0.4)
SWI-Prolog comes with ABSOLUTELY NO WARRANTY. This is free software.
Please run ?- license. for legal details.
.
For online help and background, visit https://www.swi-prolog.org
For built-in help, use ?- help(Topic). or ?- apropos(Word).
.
1 ?- [hello.pl].
ERROR: Type error: `dict' expected, found `hello' (an atom)
ERROR: In:
ERROR: [13] throw(error(type_error(dict,hello),_15432))
ERROR: [11] '.'(hello,pl,_15466) at c:/program files/swipl/boot/dicts.pl:57
ERROR: [10] '<meta-call>'(user:user: ...) <foreign>
ERROR: [9] toplevel_call(user:user: ...) at c:/program files/swipl/boot/toplevel.pl:1173
ERROR:
ERROR: Note: some frames are missing due to last-call optimization.
ERROR: Re-run your program in debug mode (:- debug.) to get more detail.
2 ?-
Google seems to be no help at this point, it's taken about 2 hours to get to this point. This is typical of the frustration I've experienced in my past attempts to understand this language.You can express a bunch of facts and rules, great... but you can't actually write code to act on them, apparently. 8(
-----------
Edit -- Success has been achieved
C:\Program Files\swipl>bin\swipl -s hello.pl -g main -g halt
This is a sample Prolog program This program is written into hello.pl file
C:\Program Files\swipl>
----------Even better... here's hello2.pl
main :- write('This is a sample Prolog program'),
write(' This program is written into hello.pl file').
.
?- main.
?- halt.
and it works as expected C:\Program Files\swipl>bin\swipl hello2.pl
This is a sample Prolog program This program is written into hello.pl file
C:\Program Files\swipl>