/ Published in: Other
Displays simple visual effect until you press a key.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
10 screen 1 30 for z=0 to 99 40 x=int(rnd(1)*320) 42 y=int(rnd(1)*200) 44 c=int(rnd(1)*4) 50 pset(x,y),c 60 next z 70 if inkey$="" goto 30 90 stop