An open API service indexing awesome lists of open source software.

https://github.com/netherquartz/snake

My wonderful Snake game
https://github.com/netherquartz/snake

game linux-game retrogaming snake snake-game snakegame terminal-game

Last synced: about 2 months ago
JSON representation

My wonderful Snake game

Awesome Lists containing this project

README

          

# Snake
My wonderful Snake game

# How to install
## On Debian (Ubuntu, Linux Mint, etc.)
```
sudo apt install gcc
sudo apt install g++
sudo apt install make
sudo apt install git
```
Then `cd` to any directory, e.g. `cd ~/Documents` and then do
```
git clone https://github.com/NetherQuartz/Snake.git
cd Snake
make
./snake
```
Snake will run immediately and you will be able to get some rest by playing your favorite game!

## On Windows 10
Download Ubuntu from Microsoft Store and see previous section ¯\\\_(ツ)\_/¯.

## On macOS
You need g++ or clang installed. There are many ways to download them, e.g. install Xcode from App Store. Then install git, `cd` to any directory, e.g. `cd ~/Documents` and type
```
git clone https://github.com/NetherQuartz/Snake.git
cd Snake
make
./snake
```
Snake will start immediately and you will be able to play it!

# How to uninstall
Don't do this, really, but if you thought it over well and really decided to delete this wonderfull game, then just ```cd``` to your `Snake/..` folder and `rm -r Snake` there.