Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 451 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 451 Bytes

play snake in your terminal

preview image

dependencies

  • gcc
  • ncurses library

on arch you can install them with:

sudo pacman -S ncurses

build

gcc main.c -lncurses -o snake

usage

./snake -h 10 -w 20

height and width options are optional; if not provided terminal screen height and width will be used.

keybinds

  • h, j, k, l or arrow keys to move
  • r to restart
  • q to quit