ZVON > References > Haskell reference |
Intro / Search / ZVON |
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | >> Char << | Monad | IO | Directory | System | Time | Locale | CPUTime | Random |
Module: | Char |
---|---|
Function: | chr |
Type: | Int -> Char |
Description: | The ord and chr functions are fromEnum and toEnum restricted to the type Char. |
Related: |
Input: chr 97
Output: 'a'
Input: chr 10
Output: '\n'
Input: chr 0
Output: '\NUL'