Compound Operator
A compound operator, also known as a block, consists of one or more operators of any type enclosed in curly braces {}. The closing brace } must not be followed by a semicolon ;.
**Syntax:**
{
// One or more operators
}
**Example:**
if(x==0) {
Print("invalid position x = ",x);
return;
}
**See Also:**
**Navigation:**
Previous
arrow_back
Operators