-
Notifications
You must be signed in to change notification settings - Fork 4
Prevent or capture output to stdout or other handles in Haskell
License
trystan/silently
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Silently is a package that allows you to run an IO action and prevent it from writing to stdout, or any other handle, by using "silence". Or you can capture the output for yourself using "capture". For example; the program import System.IO.Silently main = do putStr "putStrLn: " >> putStrLn "puppies!" putStr "silenced: " >> silence (putStrLn "kittens!") putStrLn "" (captured, result) <- capture (putStr "wookies!" >> return 123) putStr "captured: " >> putStrLn captured putStr "returned: " >> putStrLn (show result) will print putStrLn: puppies! silenced: captured: wookies! returned: 123
About
Prevent or capture output to stdout or other handles in Haskell
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published