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-3.m < prev    next >
Encoding:
Text File  |  1995-01-03  |  68 b   |  7 lines

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