SICP/run

11 lines
92 B
Bash
Executable File

#!/bin/sh
for a in "$@"
do
echo "run: $a"
echo
mit-scheme --quiet < $a
echo
done