*** empty log message ***
[chuck-blob.git] / v2 / test / p51_1.ck
blob2008c27b0204b7194cf7d39e0c1ce29311c9b2c3
1 // int comp
3 1 => int x;
5 0 => int ret;
7 if ( x == 1 ) { 
8         1 +=> ret;
11 if ( x != 1 ) { 
12         2 +=> ret;
15 if ( x <= 1 ) { 
16         4 +=> ret;
19 if ( x >= 1 ) { 
20         8 +=> ret;
23 if ( x > 1 ) { 
24         16 +=> ret;
27 if ( x < 1 ) { 
28         32 +=> ret;
31 <<<ret>>>;
32 if ( ret == 13 ) <<<"success">>>;