Back to manual index

GibPascal Reserved Words

Please note that GibPascal has the follow reserved words and standard directives that cannot be used as variables:
 and
 begin
 char
 const
 count
 do
 end
 goto       Dependent of goto is 'label'.
 hex
 if         Dependents of if are 'then', 'begin', 'end', 'and'.
 integer
 label
 program    Dependents of program are 'begin', 'end', 'const', 'var', 'label'.
 real
 repeat     Dependent of repeat is 'until'.
 string
 text 
 then
 until
 var        Dependents of var are 'char', 'hex', 'integer', 'real', 'string', 'text'.
 while      Dependents of while are 'count', 'do', 'begin', and 'end'.
Note: Although a programmer should not replicate variables that are reserved words to lessen confusion, but "String" and "string" are not the same and would be treated differently because of case.