2048-in-C/README.md

10 lines
249 B
Markdown
Raw Normal View History

2024-01-17 07:46:07 +01:00
# 2048-in-C
2048, written in C, for the terminal
2024-01-17 07:48:45 +01:00
Controls:
Arrow Keys to move
R to reset the game
This program uses ncurses and I've only tested it on my Mac's terminal. Here's the command I use to run it:
2024-01-17 07:48:53 +01:00
2024-01-17 07:48:45 +01:00
`gcc -lcurses main.c -o main && ./main`