Fix cabal file and make building with ghc 6.6.1 work.
[hs-pgms.git] / README
bloba9588effd566daf69c7ca914492cd0e8c7ffdcd0
1 This is a Haskell implementation of Programmer's Minesweeper by
2 John D Ramsdell. See 
3    http://www.ccs.neu.edu/home/ramsdell/pgms
4 for the original.
6 To add a new strategy, create a Haskell module that implements it, and
7 add it to the list in Strategies.hs. Then add the module itself it the
8 hs-pgms.cabal file and you're set. Two example strategies are provided,
9 SimpleStrat.hs and Strat1.hs (actually they're basically the same).
11 Note: The hs-pgms executable will launch a GUI by default. Run
12 hs-pgms --help to see its other capabilities.
14 Have fun!