home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / MPW / GCC 1.37.1r15 / Tests / poor-bra.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-16  |  124 b   |  14 lines  |  [TEXT/MPS ]

  1. int glob1, glob2;
  2.  
  3. main()
  4. {
  5.     int i;
  6.     
  7.     for (i = 0; i < 10; ++i) {
  8.         if (glob1) {
  9.             ++glob2;
  10.         } else {
  11.             --glob2;
  12.         }
  13.     }
  14. }