outline voor presentatie
[cc1516.git] / spl.icl
diff --git a/spl.icl b/spl.icl
index 0a3f197..2b458e4 100644 (file)
--- a/spl.icl
+++ b/spl.icl
@@ -59,12 +59,12 @@ Start w
        # lexOut = lexer cs
        # stdin = if (not args.lex) stdin (case lexOut of
                (Right toks) = 
-                       stdin <<< "---LEXER\n" <<< printTokens toks <<< "---LEXER\n"
+                       stdin <<< "//LEXER\n" <<< printTokens toks <<< "//LEXER\n"
                _ = stdin)
        # parseOut = parser lexOut
        # stdin = if (not args.parse) stdin (case parser lexOut of
                (Right ast) = 
-                       stdin <<<  "---PARSER\n" <<< toString ast <<< "---PARSER\n" 
+                       stdin <<<  "//PARSER\n" <<< toString ast <<< "//PARSER\n" 
                (Left parse) = stdin <<< toString parse)
        = snd $ fclose stdin w
                where
@@ -82,6 +82,7 @@ parseArgs w
        version=False,
        lex=False,
        parse=True,
+       selftest=False,
        fp=Nothing,
        help=False}, w)
 where