[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
(Under construction.)
type Char { built-in type } |
`Char' is defined in ISO-7185 Pascal and supported by all known Pascal variants.
program CharDemo; var a: Char; begin a := 'x'; WriteLn (a) end. |