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++
- Host: GitHub
- URL: https://github.com/vrongmeal/tictactoe
- Owner: vrongmeal
- Created: 2017-12-20T09:25:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-23T06:31:26.000Z (about 8 years ago)
- Last Synced: 2025-02-23T10:31:12.916Z (over 1 year ago)
- Topics: cpp
- Language: C++
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)