mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 12:07:49 +02:00
7 lines
90 B
Bash
7 lines
90 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Compile HolyC files
|
|
mv $1 $1.HC
|
|
filename=$1.HC
|
|
shift
|
|
hcc $filename
|