This is a snake game in python. The default characters are as below.
- Snake:
#
- Food:
*
- Background:
.
wasd or arrow keys or Vim hjkl for snake movement. q to quit. Any other key to pause. Press one of the movement keys to resume.
python3 snake.py [flags]
See snake.py --help
python3 snake.py --char-head='☺' --char-snake='+' --char-bg=' '
python3 snake.py --color-snake blue --color-food red
- Make horizontal and vertical speeds equal (see commit history for details)
- Add support for best score saving/loading (tentative)