13 lines
167 B
Bash
13 lines
167 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo Compiling $1...
|
||
|
|
||
|
deno run --allow-read --allow-write compiler/main.ts $1
|
||
|
|
||
|
echo "Running out.slgbc..."
|
||
|
|
||
|
./runtime/build/sliger run out.slgbc
|
||
|
|