mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-14 13:23:53 +00:00
15 lines
334 B
Bash
15 lines
334 B
Bash
#!/bin/sh
|
|
|
|
# msp - Mercury SICStus Prolog Interpreter
|
|
#
|
|
# A version of `sp' with `sp_builtin' and the Mercury library already loaded.
|
|
#
|
|
# Usage: msp [<sp options>]
|
|
#
|
|
# Environment variables: MERCURY_SICSTUS_INTERPRETER
|
|
|
|
INTERPRETER=\
|
|
${MERCURY_SICSTUS_INTERPRETER:-@LIBDIR@/sicstus/@FULLARCH@/library.sicstus}
|
|
|
|
exec $INTERPRETER "$@"
|