Written in Go
- Install Go
git clone git@github.com:jneander/tic-tac-toe-go.git
cd tic-tac-toe-go
./setup
cd ttt
go test
To see a more verbose output from the tests, use the -v
flag as follows:
go test -v
Go test output can be difficult to follow. I recommend only using the verbose flag if you're curious.
While in the 'tic-tac-toe-go' directory, run the following command:
./tic-tac-toe-go
This executable was built on OS X. If you are on a different platform, you may need to create another build using Go.
In order to use most of Go's features, you'll need to do some extra setup. The Go command-line tools have some requirements for workspace paths and environment variables. For more information, read the Go Documentation.