Is there a way to just create a prolog script called hello.pl
like this:
#!/usr/local/bin/swipl -q -s -t main
main:-
write('Hello World
').
And be able to run it from the terminal like this?
$ hello.pl
Hello World
$
When I do that it gives me this:
hello.pl: line 3: main:-: command not found
hello.pl: line 4: syntax error near unexpected token `'Hello World
''
hello.pl: line 4: ` write('Hello World
').'
I am able to get it working by writing this on the command line:
$ swipl -q -f hello.pl -t main
Hello World
$
But is there a way to just run the straight script as an executable instead?
Edit
Haven't yet been able to get this to work. Here is the output from the commands @Boris asked in the comments in his answer:
$ ls -l
total 8
-rwxr-xr-x 1 viatropos staff 235 Aug 26 20:28 example.pl
$ cat example.pl
#!/usr/local/bin/swipl
:- set_prolog_flag(verbose, silent).
:- initialization main.
main :-
format('Example script~n'),
current_prolog_flag(argv, Argv),
format('Called with ~q~n', [Argv]),
halt.
main :-
halt(1).
$ which swipl
/usr/local/bin/swipl
$ swipl --version
SWI-Prolog version 6.6.6 for x86_64-darwin13.1.0
$ ./example.pl
./example.pl: line 3: syntax error near unexpected token `('
./example.pl: line 3: `:- set_prolog_flag(verbose, silent).'
$
I am on Mac OSX 10.9.2, and installed swipl with homebrew via brew install swi-prolog --with-libarchive
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…