| 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: | ord |
| Type: | Char -> Int |
| Description: | The ord and chr functions are fromEnum and toEnum restricted to the type Char. |
| Related: |
Input: ord 'a'
Output: 97
Input: ord '\n'
Output: 10
Input: ord '\NUL'
Output: 0