/* Test the while and break statements */
proc main( args )
{
    var
        i, n;

    i = 1;
    n = args.length();
    while( i < n ) {
        say( args[i], " " );
        if( i == 3 ) break;
        i = i + 1;
    }
    "\n";
}