ghci> os <- Streams.unlines Streams.stdout ghci> Streams.write (Just "Hello,") os Hello ghci> Streams.write Nothing os ghci> Streams.write (Just "world!") os world!