[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 Error 04                 Left Paren ( was Expected                   pp 321

 Source:  Compiler

 Cause:   Left parenthesis missing from declaration or statement.

 Remedy:  Check for missing or mismatched parenthesis.
          Left and Right Paren counts must match in a statement.


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


 Example:
       Procedure Missing  Var A,B:Integer)    ; { Wrong   }
          Begin
          End                                 ;

       Procedure Missing (Var A,B:Integer)    ; { Correct }
          Begin
          End                                 ;

       BEGIN
          WriteLn  'Missing')                 ; { Wrong   }
          WriteLn ('Correct')                 ; { Correct }

          WriteLn ('Mismatched',  Abs (-44))) ; { Wrong   }
          WriteLn ('Correct   ', (Abs (-44))) ; { Correct }
       END.

This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson