One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #include <cstdlib> | |
| #include <iostream> | |
| using namespace std; | |
| void board(); | |
| void player_choose(int player); | |
| bool check_winner(int player); | |
| void show_game(int player_winner); | |
| char get_value(char mark); |
| # logthon.py | |
| # -*- coding: utf-8 -*- | |
| from datetime import datetime | |
| """ | |
| OUTPUT FORMAT | |
| """ | |
| STD_FORMAT = '[{timestamp}] {user} - {level}: {message}' |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
| Color_Off='\033[0m' # Text Reset | |
| Red='\033[0;31m' # Red | |
| Green='\033[0;32m' # Green | |
| REQUIREMENTS_PATH="${PWD}/requirements.txt" | |
| function print_out { | |
| COLOR=$1 | |
| MESSAGE=$2 | |
| echo "${COLOR}${MESSAGE}${Color_Off}" |