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