mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-24 05:56:26 +02:00
7 lines
119 B
Bash
7 lines
119 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Put instructions to run the runtime
|
|
mv $1 $1.scala
|
|
filename=$1.scala
|
|
shift
|
|
scala $filename "$@"
|