복사 붙여넣기 2 Batch
Compilation commands
Language | Compilation command |
---|---|
C11 | /usr/bin/gcc -DEVAL -std=gnu11 -O2 -pipe -static -s -o copypaste2 copypaste2.c -lm |
C++20 | /usr/bin/g++ -DEVAL -std=gnu++20 -O2 -pipe -static -s -o copypaste2 copypaste2.cpp |
C++17 | /usr/bin/g++ -DEVAL -std=gnu++17 -O2 -pipe -static -s -o copypaste2 copypaste2.cpp |
Java | /usr/bin/javac -encoding UTF-8 copypaste2.java /bin/sh -c echo "Main-Class: copypaste2" > __manifest__.txt /bin/sh -c jar cfm copypaste2.jar __manifest__.txt *.class |
Pypy 3 | /usr/bin/pypy3 -m compileall -b copypaste2.py /bin/mv copypaste2.pyc __main__.pyc /usr/bin/zip copypaste2.pyz.zip __main__.pyc /bin/mv copypaste2.pyz.zip copypaste2.pyz |
Please sign in to submit
Problem Source