Created
October 17, 2015 11:39
-
-
Save schauder/5b81a510ba63145d36a9 to your computer and use it in GitHub Desktop.
Random Dots
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 210 GR | |
| 220 REM CHOOSE A RANDOM COLOR | |
| 230 COLOR=RND(16) | |
| 240 REM CHOOSE A RANDOM POINT (X,Y) | |
| 250 x=RND(40) | |
| 260 Y=RND(40) | |
| 235 print x | |
| 280 PLOT X,Y | |
| 290 REM COOSE ANOTHER RANDOM COLOR AND POINT | |
| 300 goto 230 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment