Small connect4 implementation that runs in the terminal
| .gitignore | Initial commit | |
| LICENSE | Add license | |
| main.c | Add code | |
| README.md | Add instructions to README.md | |
connect4
A small implementation of connect 4 that runs in the terminal
How to use
Just compile it with your c compiler. For example:
$ tcc -o main main.c
$ gcc -o main main.c
$ pcc -o main main.c
$ clang -o main main.c
Then simply run it in your terminal
$ ./main