home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Computing 57
/
ac057a.adf
/
Demos
/
first.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
BASIC Source File
|
1988-12-02
|
185 b
|
10 lines
REM Your first HiSoft BASIC program
REM as described on page 9 of the manual.
t=TIMER
DO WHILE TIMER<t+20
x=MOUSE(1) : y=MOUSE(2)
IF MOUSE(0) THEN LINE (x,y)-(x+30,y+30),,bf
LOOP