[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
Error 36 Type Identifier was Expected pp 322
Source: Compiler
Cause: Variable is not correctly declared as a Type.
Remedy: Examine the statement ahead of the error cursor for the above
condition. Check the type declaration of the variable.
----------------------------------------------------------------------------
Example:
TYPE
IntType = Integer; { Declare a type of Integer }
VAR
IntVar : Integer; { IntVar is not a Type }
Numbers : Array [0..9] of IntVar; { Wrong - needs a Type }
Numbers : Array [0..9] of IntType; { Correct - type is IntType }
BEGIN
END.
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson