home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l074 / 1.ddi / STARS.TRU < prev    next >
Encoding:
Text File  |  1985-01-05  |  177 b   |  10 lines

  1. ! Plot random points, like stars.
  2. !
  3. DO
  4.    LET x = Rnd        ! Pick two random numbers
  5.    LET y = Rnd
  6.    PLOT x,y           ! Plot a point at the random spot
  7. LOOP
  8.  
  9. END
  10.