#!/bin/bash

g++ -std=c++11 -o playGame *.cpp algorithm/*.cpp
outfile="playGame__$(date "+%d_%m_%y__%H_%M_%S").log"
./playGame | tee -a "$outfile"
