home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / p / pccts.zip / tutorial / t.sc < prev    next >
Text File  |  1992-12-08  |  75b  |  8 lines

  1. main(n)
  2. {
  3.     while ( n ) {
  4.         print n; print "\n";
  5.         n = n - "1";
  6.     }
  7. }
  8.