Skip to content

Commit

Permalink
extra newline at printout
Browse files Browse the repository at this point in the history
  • Loading branch information
inariksit committed Sep 19, 2024
1 parent 75423a0 commit 95ba895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lam4-cli/app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ main = do
let cstDecls = concatMap parseCSTByteString frontendCSTJsons
smDecls = ToSimala.compile . cstProgramToConEvalProgram $ cstDecls
putStrLn "------- Prettyprinted -------------"
mapM_ (putStrLn . printTree) cstDecls
mapM_ (\x -> putStrLn (printTree x) >> putStrLn "") cstDecls
print "------- CST -------------"
pPrint cstDecls
print "-------- Simala exprs ---------"
Expand Down

0 comments on commit 95ba895

Please sign in to comment.