RATS 10.1
RATS 10.1

BEGIN

  block of instructions

END

 

BEGIN-END is used to create a block of instructions which are treated as a single unit in IF-ELSE, WHILE and UNTIL programming constructs. It can also be used as a "wrapper" around a compiled section which starts with IF, WHILE, UNTIL. In practice, BEGIN is usually replaced by the equivalent { and the matching END with } as those produce more readable code.

 


Copyright © 2025 Thomas A. Doan