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-3.m < prev    next >
Text File  |  1996-09-28  |  68b  |  7 lines

  1. i = 5;
  2. while (i)
  3.   i--;
  4.   printf ("%d", i);
  5. endwhile
  6. printf ("\n");
  7.