Find a file
2024-01-18 09:10:50 +13:00
.gitignore Added a simple make file 2024-01-18 08:37:17 +13:00
LICENSE Create LICENSE 2024-01-17 10:01:21 -08:00
main.c Update main.c 2024-01-16 23:31:36 -08:00
Makefile Added a simple make file 2024-01-18 08:37:17 +13:00
README.md Update README 2024-01-18 09:10:50 +13:00

2048 in C

2048, written in C, for the terminal.

Controls:

Arrow Keys to move

R to reset the game

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:

make

Then to run the program

./2048

OR install the program after building and run it.

make install
2048