Go to the first, previous, next, last section, table of contents.


Control Structures

BEGINNING-OF-PROGRAM
  <definitions>
    BEGINNING-OF-EXECUTION
      <stmt>;
      <stmt>;
      <stmt>;
      ...
    END-OF-EXECUTION
END-OF-PROGRAM
  BEGIN
    <stmt>;
    <stmt>;
    <stmt>;
    ...
  END;

  IF <test>
    THEN <stmt>
    [ ELSE <stmt> ]

  ITERATE <positive-integer> TIMES
    <stmt>

  WHILE <test> DO
    <stmt>


Go to the first, previous, next, last section, table of contents.