-- Main0.hs -- -- Null compiler that just snarfs the input and spits it out. -- -- compilation: -- ghc --make -O2 Main0.hs -o mjc -- -- usage: -- ./mjc < infile -- ./mjc < infile > outfile -- module Main where main = do file_as_str <- getContents print file_as_str