/* For loop */

Int count := 0;
Int i;

for( i := 0; i < 10; i := i + 1 )
{
count := count + 1;
}

Print(count);
