home *** CD-ROM | disk | FTP | other *** search
/ Ultimate Game Collection / XULTI.ISO / 396 / plot.rpp < prev    next >
Text File  |  1996-11-01  |  336b  |  22 lines

  1. {PLOT.RPP - Test #2}
  2.  
  3. var x: number; {declare x as a number}
  4.  
  5. randomize;     {seed random generator}
  6.  
  7. loop(x=1 to 10000)
  8.   setcolor(rand(1, 255));
  9.   plot(rand(0, maxx), rand(0, maxy));
  10.  
  11.   {end program with <SPACE> or <RIGHT>}
  12.   if(kbcode(57) or (kbcode(77)))
  13.     end;
  14.   endif;
  15. endl;
  16.  
  17. println("I am the man!");
  18.  
  19.  
  20.  
  21.  
  22.