Files
mercury/scripts/mnp.in
Fergus Henderson 809a650b72 Fix missing ";;" in case statement.
scripts/mnp.in:
	Fix missing ";;" in case statement.
1995-10-09 03:50:32 +00:00

23 lines
712 B
Bash

#! /bin/sh
# @configure_input@
#---------------------------------------------------------------------------#
# Copyright (C) 1995 University of Melbourne.
# This file may only be copied under the terms of the GNU General
# Public License - see the file COPYING in the Mercury distribution.
#---------------------------------------------------------------------------#
# 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}
case $# in
0) exec $INTERPRETER ;;
*) exec $INTERPRETER "$@" ;;
esac