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

Module: Prelude
Function: putChar
Type: Char -> IO ()
Description:
Related:
Bibliography: Basic I/O Operations [ A Gentle Introduction to Haskell ]

Example 1
Program source: 

main = do c <- getChar
          putChar c

Input: A

Output: A