Rexx Programming/How to Rexx/block
Grouping statements into blocks using do and end constructs
editStatements can be grouped together into a block by using do and end syntactical components:
do say "Time has run out!" eggsready = -1 end
Statements can be grouped together into a block by using do and end syntactical components:
do say "Time has run out!" eggsready = -1 end