Language Setup
Brainf**k Supported!
Adding a language
{
"cpp":{ //the id of the language
"ext":"cpp", //the extension name of the language
"name":"GNU C++ 11", //the display name of the language
"compileCmd":["g++","Main.cpp","-o","Main.exe","-O2","-DONLINE_JUDGE","-std=gnu++11"], //the command line to be called when compiling. Write each piece of argument in a string.
"runCmd":["./Main.exe"], //the command line to be called when running
"opCode":[1,2,3,4], //the permitted system calling code.
"file":[],// the permitted reading files
"aceName":"c_cpp" //the ACE ID for displaying. Only needed in Maven version.
},
"someOtherLang":{...}
}Last updated