License | BSD-style |
---|---|
Maintainer | Foundation |
Stability | experimental |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
Documentation
A handle managing output to the Haskell program's standard output channel.
exitFailure :: IO a Source #
The computation
exitFailure
is equivalent to
exitWith
(
ExitFailure
exitfail
)
,
where
exitfail
is implementation-dependent.
exitSuccess :: IO a Source #
The computation
exitSuccess
is equivalent to
exitWith
ExitSuccess
, It terminates the program
successfully.