7. Embedded QUEL for Pascal : Pascal Variables and Data Types : Variable and Type Declarations : The Syntax of Label Declarations
 
Share this page                  
The Syntax of Label Declarations
Earlier versions of EQUEL/Pascal allowed the declaration of program-declared labels without a terminating semicolon:
##  label
##      start, stop
EQUEL/Pascal still allows this syntax but generates a warning. You can avoid the warning by terminating the label with a semicolon:
##  label
##      start, stop;
You need not use a semicolon if you do not declare any labels yourself:
##  label