Created
February 10, 2026 20:39
-
-
Save imaman/8fcde0272ed13c7f0fc78a1092bc21fe to your computer and use it in GitHub Desktop.
THE TORTOISE AND THE HARE AT LAST-ALMOST!
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
| 10 REM * THE TORTOISE & THE HARE | |
| 15 REM * VERSION 1 | |
| 16 REM * From ATARI® Games and Recreations | |
| 17 REM * By Herb Kohl, Ted Kahn, Len Lindsay with Pat Cleland | |
| 20 GRAPHICS 7:COLOR 1 | |
| 25 PRINT "WHO DO YOU THINK WILL FINISH FIRST?" | |
| 30 FOR X=0 TO 79 | |
| 40 FOR Y=0 TO 79 | |
| 50 PLOT X,Y:REM * THIS IS THE TORTOISE | |
| 55 REM * AND HERE COMES THE HARE... | |
| 60 PLOT (RND(1)*79)+80,RND(1)*79 | |
| 70 DRAWTO (RND(1)*79)+80,RND(1)*79 | |
| 80 NEXT Y | |
| 90 NEXT X |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment