Let's say I have a binary tree.
main = putStrLn $ printTree tree
data Tree = Empty | Node Int (Tree) (Tree) deriving (Show)
tree = Node 4 (Node 3 Empty (Node 2 Empty Empty)) Empty
printTree :: Tree -> String
printTree x = case x of
Node num treeA treeB -> show num ++ "\n" ++ printTree treeA ++ "\n" ++ printTree treeB
Empty -> "Empty"
Output
*Main> main
4
3
Empty
2
Empty
Empty
Empty
Desired Output (delimited by tabs or double space is fine)
*Main> main
4
3
Empty
2
Empty
Empty
Empty

[String], instead ofString. Making the output a list of lines allows you to trivially modify each line resulting from a recursive call. – Carl Feb 26 at 2:04