SICP/run

9 lines
77 B
Plaintext
Raw Normal View History

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