slige/slige-run.sh

16 lines
191 B
Bash
Raw Permalink Normal View History

2024-12-11 02:11:00 +00:00
#!/bin/bash
set -e
2024-12-11 11:36:19 +00:00
echo Text:
cat $1
2024-12-11 02:11:00 +00:00
echo Compiling $1...
deno run --allow-read --allow-write compiler/main.ts $1
2024-12-11 11:36:19 +00:00
echo Running out.slgbc...
2024-12-11 02:11:00 +00:00
2024-12-13 19:17:22 +00:00
./runtime/build/sliger run out.slgbc ${@:2}
2024-12-11 02:11:00 +00:00