home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / test / octave.test / while / while-5.m < prev    next >
Text File  |  1996-09-28  |  102b  |  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.