19.2.1. Statements

[ fromfile: controlstructures.xml id: statements ]

 x = y + z; 
{
    int temp = x;
    x = y;
    y = temp;
}