#!/bin/bash

# Copyright (C) 2001, 2005 Alley Stoughton
#
# This file is part of Version 0 of an SML/NJ library for the
# pretty-printing of possibly infinite syntax trees.  See the file
# COPYING for copying and usage restrictions. *)

# this file should be executable

##############################################################################

# edit the following line to set heap to the root of the program's
# heap image

prog=pretty

# edit the following line to set heapdir to the directory where the
# program's heap image will reside

heapdir=./.heap

# edit the following line to set sml to the SML/NJ executable

sml=sml

##############################################################################

exec $sml @SMLload=$heapdir/$prog @SMLcmdname=$0 "$@"
