C11 | /usr/bin/gcc -DEVAL -std=gnu11 -O2 -pipe -static -s -o apple apple.c -lm |
C++20 | /usr/bin/g++ -DEVAL -std=gnu++20 -O2 -pipe -static -s -o apple apple.cpp |
C++17 | /usr/bin/g++ -DEVAL -std=gnu++17 -O2 -pipe -static -s -o apple apple.cpp |
Java | /usr/bin/javac -encoding UTF-8 apple.java
/bin/sh -c echo "Main-Class: apple" > __manifest__.txt
/bin/sh -c jar cfm apple.jar __manifest__.txt *.class |
Pypy 3 | /usr/bin/pypy3 -m compileall -b apple.py
/bin/mv apple.pyc __main__.pyc
/usr/bin/zip apple.pyz.zip __main__.pyc
/bin/mv apple.pyz.zip apple.pyz |