Compound Statement
A compound statement is also called block of code, and defines, as already explained in variables, a scope for variables. Compound statements are commonly used together with other statements, such as if-statements, while-loops and for-loops.
Syntax
{
STATEMENTS (OPTIONAL)...
}