This is a simple version of the traditional snake game written in python3, using the curses library.
git clone https://github.com/jacarvalho/snake
cd snake
python3 setup.py install
python3 snake
- Move the snake with the ARROW keys
- Collect the 'food', indicated by 'X'
- The game ends if the snake hits itself or the wall
- To quit the game earlier press 'q'
make