commit 0013e37ed1085529fbb63406518b58e040a6421a parent 643ee76c1a12a678b9f2549383470225575d9ddc Author: Martin Kloeckner <mjkloeckner@gmail.com> Date: Mon, 1 Apr 2024 00:21:34 -0300 Add README.md Diffstat:
| A | README.md | | | 25 | +++++++++++++++++++++++++ |
1 file changed, 25 insertions(+), 0 deletions(-) diff --git a/README.md b/README.md @@ -0,0 +1,25 @@ +# Tic Tac Toe on the Command Line + +This is a Command line tic tac toe game. It was first developed as a [solution +to a practical problem of a University course.](https://github.com/mjkloeckner/CB100/blob/3db111deffcd5ec767f81682f9f9c2106e05b69a/guias/2/ej12.cpp) + +## Dependencies + +- Unix Based Operating System (Linux, \*BSD, etc) +- A terminal emulator that supports [ANSI escape sequences](https://en.wikipedia.org/wiki/ANSI_escape_code) +- [Termios library](https://man7.org/linux/man-pages/man3/tcsetattr.3.html) +- A C++ Compiler + +## Quick Start + +Clone the repository and build it with a C++ compiler + +```console +$ g++ tictactoe.cpp -o tictactoe +``` + +Then run the executable + +```console +$ ./tictactoe +```
