- Python(py)
/usr/bin/python -c "import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)"
- Python 3(py.py3)
/usr/bin/python3 -c "import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)"
- Python 2(py.py2)
/usr/bin/python -c "import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)"
- C++(cc)
/usr/bin/g++ -Wall -O2 -std=c++14 -o foo foo.cc -lm
- C++ 98(cc.std98)
/usr/bin/g++ -Wall -O2 -std=c++98 -o foo foo.cc -lm
- C++ 11(cc.std11)
/usr/bin/g++ -Wall -O2 -std=c++11 -o foo foo.cc -lm
- C++ 14(cc.std14)
/usr/bin/g++ -Wall -O2 -std=c++14 -o foo foo.cc -lm
- C++ 17(cc.std17)
/usr/bin/g++ -Wall -O2 -std=c++17 -o foo foo.cc -lm