summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Thue/Parser.hs (renamed from thue.hs)9
1 files changed, 8 insertions, 1 deletions
diff --git a/thue.hs b/Thue/Parser.hs
index b76056e..dd40e23 100644
--- a/thue.hs
+++ b/Thue/Parser.hs
@@ -1,5 +1,12 @@
+module Parser (
+ ThueProgram(..),
+ Rule(..),
+ State,
-import Text.Combinators.Parsec
+ parseThue
+ ) where
+
+import Text.ParserCombinators.Parsec