Module { } stdlib/bhc-system/hs/BHC/System/Exit.hs Exit Types data ExitCode { } # ExitSuccess Exit code 0, indicating success ExitFailure Int Non-zero exit code, indicating failure data ExitException { } # ExitException ExitCode Exception type for program exit. Functions exitWith :: ExitCode -> IO a { } # Terminate the program with the given exit code. Instances instance Exception ExitException { }