Created
June 27, 2017 21:19
-
-
Save jgrahamc/901b26c6fe8f5af6a9622396b991203e to your computer and use it in GitHub Desktop.
Code from Deutschland 83 episode 3
This file contains 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 CLS | |
20 FOR I = 1 TO 64 | |
30 FOR P = 1 TO 6 | |
40 FOR Q = 1 TO 5 | |
50 A=48+RND(1)*9 | |
60 A$=A$+CHR$(A) | |
70 NEXT Q | |
80 A$=A$+" " | |
90 NEXT P | |
100 PRINT" ";A$:A$="" | |
110 NEXT I |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment