ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | >> IO << | Directory | System | Time | Locale | CPUTime | Random

Module: IO
Function: stderr
Type: Handle
Description: returns handle to the standard error channel
Related:

Example 1
Program source: 

import IO

main = do hPutStr stderr "Standard Error Channel"

Output: Standard Error Channel