qp.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
BEGIN Keyword
  Keywords Contents Index                                   Back
 
  BEGIN
  <statement>;
        .
        .
  <statement>
  END
 
  Description
 
    The keyword BEGIN starts a statement block that consists of one or
    more statements considered as one statement. It starts with a BEGIN
    followed by one or more statements, and ends with an END. Multiple
    statements are separated by semicolons.
 
    Anywhere a single statement appears, a statement block may also
    appear.
 
  See also:  IF, Statement block, Structured statement