#!/bin/sh
#
# A simple shell script to invoke the Gofer compiler and set the path
# to the prelude file.  Ultimately, you might want to copy this file into
# your own bin directory so that you can record your favourite command line
# settings or use a different prelude file ...
#
GOFER=/usr/local/lib/Gofer/standard.prelude
export GOFER
exec /usr/local/lib/Gofer/gofc $*
