diff --git a/README.md b/README.md index 2018bda..ac73802 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,9 @@ There is currently 3 ways of using this package: - `cd $GOPATH/src/github.com/hectorj/TicTacToe/web/static/ && ./build.sh -dest=./public/` will generate all the static files needed in `$GOPATH/src/github.com/hectorj/TicTacToe/web/static/public`, so that you can just open the index.html file in your browser, or use any HTTP server. Coming soonish: a GopherJS version + +## Story + +I made this mainly to train myself in Go, but I chose TicTacToe because this game was one of my first successful project (as in working, finished, and doing someting "useful") as a kid. + +At the time I was using C++ and Qt4 and implemented the minmax algorithm found on the internet. You can see my old code there: https://github.com/hectorj/TicTacToe-qt4