{
Begins program block.
Syntax
{ program block }
Comments
Templates are divided into blocks. The beginning of each block must be indicated by a "{".
Unlike in C, blocks containing only one statement must still be placed in braces.
Example
header
{
     // header code
     if
     {
          // true statement
     } then
     {
          // this will be done
     }
}