16 lines
191 B
Bash
Executable File
16 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo Text:
|
|
cat $1
|
|
|
|
echo Compiling $1...
|
|
|
|
deno run --allow-read --allow-write compiler/main.ts $1
|
|
|
|
echo Running out.slgbc...
|
|
|
|
./runtime/build/sliger run out.slgbc ${@:2}
|
|
|