fix: README -> README.md
This commit is contained in:
parent
43e68af625
commit
99b0a6292c
756 changed files with 323753 additions and 71 deletions
12
ta6ob/nanopass/.travis/run_tests
Executable file
12
ta6ob/nanopass/.travis/run_tests
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
case $SCHEME in
|
||||
vicare) vicare --more-file-extensions --source-path "." --r6rs-script test-all.ss ;;
|
||||
ikarus) ikarus --r6rs-script test-all.ss ;;
|
||||
chez) scheme --program test-all.ss ;;
|
||||
ironscheme)
|
||||
export -p PATH="$HOME/.dotnet:$PATH"
|
||||
dotnet ./IronScheme/IronScheme.ConsoleCore.dll -- test-all.ss
|
||||
;;
|
||||
*) echo "unexpected scheme implementation $SCHEME" ; exit 1 ;;
|
||||
esac
|
Reference in a new issue