Cold Help System: Programming: ColdC Reference Manual: Language Structure: Statements: Simple: Compound


The compound statement is used to group one or more statements as a single statement. The compound statement is formatted as any number of statements contained within left and right curly braces, such as:

{
statement1
statement2
..
..
..
}

The interpreter evaluates each statement in the compound block in turn.


Comment | Expression | Compound | Return


the Cold Dark