/* Test the for statement again.  A longer loop, as well as the += assignment */

proc main()
{
    var
        i;

    for( i = 0; i < 1000/*1000000*/; i += 1 ) {
    }
}