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

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