*** empty log message ***
[chuck-blob.git] / v2 / test / p84.ck
blob5954a210233390f85b074a2d4e1712eb61e50651
1 // while with post-increment
2  
3 0 => int j;
5 while (  j++ < 4 );
6 <<<"j should equal 5">>>;
7 <<<j>>>;
8 if ( j == 5 ) <<<"success">>>;