Files
mercury/scripts/mnp.sh
Fergus Henderson d3a17f6f40 The NU-Prolog executable have been renamed *.nu.
mcn.sh, mnp.sh:
	The NU-Prolog executable have been renamed *.nu.

mmake.sh:
	Add a script for making Mercury programs.
	This builds a makefile and then invokes Make.
1995-03-07 14:11:11 +00:00

14 lines
307 B
Bash

#!/bin/sh
# mnp - Mercury NU-Prolog Interpreter
#
# A version of `np' with `np_builtin' and the Mercury library already loaded.
#
# Usage: mnp [<np options>]
#
# Environment variables: MERCURY_INTERPRETER
INTERPRETER=${MERCURY_INTERPRETER:-@LIBDIR@/nuprolog/@FULLARCH@/library.nu}
exec $INTERPRETER "$@"