Added julia version, and alias.

This commit is contained in:
Tommy-Xavier Robillard 2020-05-02 00:30:12 -04:00
parent c6295ad329
commit 31471c3ee0
2 changed files with 5 additions and 0 deletions

View File

@ -142,6 +142,8 @@ func launch(request Inbound, res http.ResponseWriter) {
execlang = "nasm"
case "js", "javascript":
execlang = "node"
case "jl":
execlang = "julia"
case "python":
execlang = "python3"
case "ts":

View File

@ -21,6 +21,9 @@ echo '---'
echo 'java'
lxc-attach --clear-env -n piston -- /bin/bash -l -c "java -version"
echo '---'
echo 'julia'
lxc-attach --clear-env -n piston -- /bin/bash -l -c "julia --version"
echo '---'
echo 'nasm'
lxc-attach --clear-env -n piston -- /bin/bash -l -c "nasm -version"
echo '---'