readd brainfuck support

This commit is contained in:
Brian Seymour 2020-10-02 18:51:00 -05:00
parent a639109825
commit 9d04f1929d
3 changed files with 8 additions and 0 deletions

View file

@ -67,6 +67,7 @@ func Execute(res http.ResponseWriter, req *http.Request) {
whitelist := []string{
"awk",
"bash",
"brainfuck", "bf",
"c",
"cpp", "c++",
"csharp", "cs", "c#",
@ -138,6 +139,8 @@ func launch(request Inbound, res http.ResponseWriter) {
execlang := request.Language
switch execlang {
case "bf":
execlang = "brainfuck"
case "c++":
execlang = "cpp"
case "cs", "c#":