#!/bin/sh
# scheme -- Run the (Petite) Chez Scheme interpreter

# Change the path below for your install of Chez Scheme
EXEC='/usr/local/bin/petite'

exec "$EXEC" "$@"
