sttt 0.1.0

An implemention of super tic tac toe, including bots that play it.
Documentation
Set-PSDebug -Trace 1

$Env:RUSTFLAGS="-Z pgo-gen=target/pgo/pgo.profraw"
cargo +nightly run --release --target-dir target/pgo/gen

$Env:RUSTFLAGS=""
rustup run nightly llvm-profdata merge -o target/pgo/pgo.profdata target/pgo/pgo.profraw

$Env:RUSTFLAGS="-Z pgo-use=target/pgo/pgo.profdata"
cargo +nightly build --release --target-dir target/superoptrelease

$Env:RUSTFLAGS=""