home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / octave-1.1.1-src.lha / octave-1.1.1 / test / octave.test / while / while-5.m < prev    next >
Encoding:
Text File  |  1995-01-03  |  102 b   |  9 lines

  1. i = 0;
  2. while (++i < 5)
  3.   if (i < 3)
  4.     continue;
  5.   endif
  6.   printf ("%d", i);
  7. endwhile
  8. printf ("\n");
  9.