stub voor parsen gemaakt
[cc1516.git] / main.icl
index 90624e8..ced5b0a 100644 (file)
--- a/main.icl
+++ b/main.icl
@@ -4,13 +4,14 @@ import StdFile
 import StdBool
 
 import lex
+import parse
 
-Start :: *World -> (LexerOutput, *World)
+Start :: *World -> (ParserOutput, *World)
 Start w
 # (out, w) = stdio w
 # (toparse, out) = readEntireFile out
 # (_, w) = fclose out w
-= (lexer toparse, w)
+= (parse (lexer toparse), w)
 
 readEntireFile :: *File -> *([Char], *File)
 readEntireFile f