Update README.md

This commit is contained in:
begilbert-sys 2024-01-16 22:50:43 -08:00 committed by GitHub
parent 54397bcff6
commit 98b0cee3b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,12 +1,13 @@
# 2048-in-C # 2048 in C
2048, written in C, for the terminal. 2048, written in C, for the terminal.
Controls: ### Controls:
Arrow Keys to move Arrow Keys to move
R to reset the game 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: ### Running:
This program uses ncurses, and I've only tested it on my Mac's terminal. Here's the command I use to run it:
`gcc -lcurses main.c -o main && ./main` `gcc -lcurses main.c -o main && ./main`