A block statement disguises a set of statements as a single statement by
enclosing it in curly braces { } or in a BEGIN-END pair.
BEGIN statement1 [ statement2 ... ] END
{ statement1 [ statement2 ... ] }
Block statements are mainly used to circumvent the one-statement limit to the loop statements (FOR Statement, REPEAT Statement, WHILE-DO Statement, DO-WHILE Statement).
For example,
ANA>x = 0
ANA>FOR i = 1,4 { x = x + i T,x }
1
3
6
10
ANA>