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 58 illegal character in identifier pp 323</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 Error 58              Illegal Character in Identifier                pp 323

 Source:  Compiler

 Cause:   Identifier must start with letter or underscore.

 Remedy:  Examine the statement ahead of the error cursor for the above
          condition.


 ----------------------------------------------------------------------------


 Example:
       TYPE
          Days = (1,2,3,4)    ;  { Wrong   -  1st char is numeric    }
          Days = (_1,_2,_3,_4);  { Correct -  1st char is alpha or _ }

       VAR
          1Var : Integer;        { Wrong   -  1st char is numeric    }
          #Var : Integer;        { Wrong   -  1st char is numeric    }

       BEGIN
       END.

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