home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / cmplangm / 1989_6 / awk / rand.awk < prev    next >
Text File  |  1988-02-25  |  99b  |  5 lines

  1. BEGIN { srand()
  2.         for (i = 1; i < 200; i++)
  3.              print int(101 * rand())
  4.       }
  5.