#!/bin/sh

# $Id: mzscheme,v 1.1 2003/06/28 22:38:55 cher Exp $
# This is a 'compilation' script for yabasic language.
# The idea is to append "#!/usr/local/bin/mzscheme -qr" string
# to the beginning of the file.
# Usage: yabasic <input> <output>

echo '#!/usr/local/bin/mzscheme -qr' > $2
echo >> $2
cat $1 >> $2
chmod +x $2
exit 0
