Skip to content

Latest commit

 

History

History
executable file
·
23 lines (12 loc) · 735 Bytes

README.md

File metadata and controls

executable file
·
23 lines (12 loc) · 735 Bytes

Pong-curses build

Pong-curses is a 71 lines pong game written in C with NCURSES lib. I created it on my first semester during my CS undergraduate. It's super simple and small but it works!

PongCurses

COMPILE ME (UBUNTU/DEBIAN)

You maybe have to install ncurses library. So to install type:

$ sudo apt-get install libncurses5-dev 

Go to its directory and tip:

$ cc pong.c -lncurses -o pong 

Then:

$ ./pong 

AUTHOR