[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
(Under construction.)
type Boolean = (False, True); |
type Boolean (n) { built-in type class } |
`Boolean' is defined in ISO-7185 Pascal and supported by all known Pascal variants.
`Boolean (n)' is a GPC extension.
program BooleanDemo; var a: Boolean; begin a := True; WriteLn (a) end. |