This commit is contained in:
Brian Seymour 2020-06-04 19:17:26 -05:00
commit 30556fb45d
7 changed files with 36 additions and 2 deletions

View file

@ -70,6 +70,7 @@ func Execute(res http.ResponseWriter, req *http.Request) {
"c",
"cpp", "c++",
"csharp", "cs", "c#",
"elixir", "exs",
"go",
"java",
"julia", "jl",
@ -139,6 +140,8 @@ func launch(request Inbound, res http.ResponseWriter) {
execlang = "cpp"
case "cs", "c#":
execlang = "csharp"
case "elixir", "exs":
execlang = "elixir"
case "asm":
execlang = "nasm"
case "js", "javascript":