diff options
author | Jed Barber <jjbarber@y7mail.com> | 2014-02-07 03:57:38 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2014-02-07 03:57:38 +1100 |
commit | 29ec75e72f7b0c71442d9cd22d387ad0726bdd04 (patch) | |
tree | a25b30d76bdf4ae7d05248d1ea4ba01c5122768d | |
parent | ad324af3fa36961bf04361056fee6c2aff81a0a5 (diff) |
Moved Thue parser into its own module
-rw-r--r-- | Thue/Parser.hs (renamed from thue.hs) | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,12 @@ +module Parser ( + ThueProgram(..), + Rule(..), + State, -import Text.Combinators.Parsec + parseThue + ) where + +import Text.ParserCombinators.Parsec |