home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 499.lha / MinRexx / sample.fd < prev    next >
Text File  |  1991-04-08  |  182b  |  13 lines

  1. /* draw something with freedraw */
  2.  
  3. address 'freedraw'
  4.  
  5. color = 0
  6.  
  7. do i = 20 to 400
  8.    'Color ' color
  9.    color = color + 1
  10.    if color > 3 then color = 0
  11.    'Line ' 20 i i 400
  12. end i
  13.