Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Turbo Pascal - <b> error 06 equal (=) was expected pp 321</b> http://www.X-Hacker.org [<<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;

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson