Composite operator
The composite operator (block) consists of one or more operators of any type enclosed in the brackets ({ }).
There shall be no semicolon (;) behind the closing bracket.
Example:
{
x = 1;
y = 2;
z = 3;
}