c7d177ccd7c2aa31b6c7243f9c8f36d61137d08c
[cc1516.git] / parse.dcl
1 definition module parse
2
3 import lex
4
5 :: ParserOutput :== Either String AST
6 :: AST = If | While //stub
7
8 parse :: LexerOutput -> ParserOutput