home *** CD-ROM | disk | FTP | other *** search
/ Amiga Computing 57 / ac057a.adf / Demos / first.bas < prev    next >
BASIC Source File  |  1988-12-02  |  185b  |  10 lines

  1. REM Your first HiSoft BASIC program
  2. REM as described on page 9 of the manual.
  3.  
  4. t=TIMER
  5. DO WHILE TIMER<t+20
  6.   x=MOUSE(1) : y=MOUSE(2)
  7.   IF MOUSE(0) THEN LINE (x,y)-(x+30,y+30),,bf
  8. LOOP
  9.  
  10.