GeneralTicTacToe 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
- GeneralTicTacToe.cabal +1/−1
- TicTacToe.hs +1/−1
GeneralTicTacToe.cabal view
@@ -1,5 +1,5 @@ name: GeneralTicTacToe -version: 0.1.0.0 +version: 0.1.0.1 synopsis: A general TicTacToe game implementation. description: Tic-tac-toe (also known as Noughts and crosses or Xs and
TicTacToe.hs view
@@ -4,7 +4,7 @@ import Data.Foldable (asum) import System.IO (hSetBuffering, stdout, BufferMode (NoBuffering)) -import Utils (surround, nth, isInt) +import Data.List.Utils (surround, nth, isInt) data Tile = O | X | Empty deriving Eq