blob: 556c8b6c8e19f07780a66e146fd4953e85b63a89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
echo ";;;; Start Chibi"
chibi-scheme -I ./lib ./test/chibi.scm
echo ";;;; End Chibi"
echo ";;;; Start Gauche"
gosh -r7 -I ./lib ./test/gauche.scm
echo ";;;; End Gauche"
echo ";;;; Start Gerbil"
GERBIL_LOADPATH="./lib" gxi --lang r7rs ./test/gerbil.scm
echo ";;;; End Gerbil"
echo ";;;; Start Guile"
guile --r7rs -L ./lib
echo ";;;; End Guile"
|