mirror of
https://github.com/engineer-man/piston.git
synced 2025-09-18 18:00:04 +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 "$@"
|