.\MSVC
$compilerPath$/bin/cl.exe /O2 /Fo"$objFile$" /Fe"$exeFile$" /I $compilerPath$\include /EHsc "$sourceFile$" /link /LIBPATH:"$compilerPath$\lib"
$exeFile$
.\MinGW64\bin
"$compilerPath$\g++" -std=c++1y "$sourceFile$" -o "$exeFile$"
.\test\output\Main.exe
.\MSVC
$compilerPath$/bin/cl.exe /O2 /Fo"$objFile$" /Fe"$exeFile$" /I $compilerPath$\include "$sourceFile$" /link /LIBPATH:"$compilerPath$\lib"
$exeFile$
.\MinGW64\bin
"$compilerPath$\gcc" -std=c11 "$sourceFile$" -o "$exeFile$"
.\test\output\Main.exe
.\jdk1.8.0_121\bin
"$compilerPath$/javac" $sourceFile$
$exeFile$
.\python3.12
$compilerPath$/python "$sourceFile$"