taylorconor / quinesnake
- воскресенье, 28 апреля 2019 г. в 00:19:46
C++
A quine that plays snake over its own source!
A quine that plays snake over its own source!
The program compiles itself; to run it first make the source file executable
(chmod +x quinesnake.cpp), then run it with ./quinesnake.cpp. It invokes
g++ on itself and then starts the game.
The snake is controlled with w, a, s and d.
This is the quine version that also compiles itself and plays snake over its own source. It requires:
g++ needs to exist (tested with GCC and Clang)/bin/ls needs to exist and be executableThis version of the program isn't a quine and doesn't compile itself, but it has all of the basic game-playing logic that the real version has, plus it's commented and readable.