]> ruin.nu Git - proglang.git/blobdiff - CompInt.hs
minor stuff
[proglang.git] / CompInt.hs
index 298c9f49c8ae3a50fcf220e393bdf99ed994c1bd..3b28c00c2d3c9c856b924200f0742343f19f7219 100644 (file)
@@ -22,11 +22,6 @@ type ParseFun a = [Token] -> Err a
 
 myLLexer = myLexer
 
-
-cHeader = "#include <stdio.h>\nint read(){\nint n;\nscanf(\"%d\",&n);\nreturn n;\n}\nint main(void){\n"
-
-cFooter = "return 0;}"
-
 putStrV :: Int -> String -> IO ()
 putStrV v s = if v > 1 then putStrLn s else return ()