[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
Error 06 Equal (=) was Expected pp 321
Source: Compiler
Cause: Equal sign is missing.
Rememdy: Check statement at cursor location. Look for incorrect usage or
missing equal sign. Misplaced comment brackets {} can cause a part
of the code not to be compiled.
----------------------------------------------------------------------------
Example:
TYPE
Days : 1..31; { Wrong }
Days = 1..31; { Correct }
Mths : 1..31; { Wrong }
Mths = 1..31; { Correct }
RecName : Record { Wrong }
Day : Days;
Mth : Mths;
End;
RecName = Record { Correct }
Day : Days;
Mth : Mths;
End;
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson