#!/bin/sh
# $Id: mzscheme,v 1.2 2003/11/10 06:16:25 cher Exp $
# Copyright (c) 2003 Alexander Chernov

# This is a `compilation' script for Dr. Scheme language.
# The idea is to append "#!/usr/local/bin/mzscheme -qr" string
# to the beginning of the file.
# Usage: mzscheme <input> <output>

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