源碼貪喫蛇

本文素材來源於GitHub,僅供技術分享所用,不作商用。歡迎大家關注我的公衆號: gbxiao992

quinesnake

A quine that plays snake over its own source!

在這裏插入圖片描述

How to run it

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.

quinesnake.cpp

This is the quine version that also compiles itself and plays snake over its
own source. It requires:

  • libcurses
  • Some binary called g++ needs to exist (tested with GCC and Clang)
  • /bin/ls needs to exist and be executable

quinesnake-commented.cpp

This 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.

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章