A command line game of NIM where you play against a AI which implements the Minimax algorithum (http://en.wikipedia.org/wiki/Minimax)
NIM - http://en.wikipedia.org/wiki/Nim
Nim is a mathematical game of strategy in which two players take turns removing objects from distinct heaps. On each turn, a player must remove at least one object, and may remove any number of objects provided they all come from the same heap.
When there are no sticks left, the game is over. who ever picks up the last stick looses
Implemented in C#