mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 17:32:01 +00:00
8 lines
130 B
Bash
Executable File
8 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SRC=$1
|
|
OUT=/tmp/a-out.prg
|
|
bin/sixtypical --analyze --compile --basic-prelude $SRC > $OUT || exit 1
|
|
x64 $OUT
|
|
rm -f $OUT
|