An open API service indexing awesome lists of open source software.

https://github.com/vrongmeal/tictactoe

A simple two player Tic Tac Toe game made with C++
https://github.com/vrongmeal/tictactoe

cpp

Last synced: 21 days ago
JSON representation

A simple two player Tic Tac Toe game made with C++

Awesome Lists containing this project

README

          

# ticTacToe
A simple two player Tic Tac Toe game made with C++

## Setup
1. Clone the repository.
2. `cd` into the directory.
3. Run the following commands (if you have gcc installed)
```sh
# To compile the program:
$ g++ main.cpp -o ticTacToe

# To run the program:
$ ./ticTacToe
```
Else, run the program like you do with any other c++ program

Made with ❤️ by [vrongmeal](https://github.com/vrongmeal)