tasty-process-0.1.0.1: test/executables/simple/Main.hs
module Main (main) where import System.IO (hPutStrLn, stderr) main :: IO () main = do putStrLn "Hello, world!" -- print to stderr hPutStrLn stderr "Hello, stderr!"
module Main (main) where import System.IO (hPutStrLn, stderr) main :: IO () main = do putStrLn "Hello, world!" -- print to stderr hPutStrLn stderr "Hello, stderr!"