mirror of
https://github.com/bradgrantham/apple2e.git
synced 2025-04-10 09:37:03 +00:00
9 lines
142 B
Plaintext
9 lines
142 B
Plaintext
10 FOR X = 1 TO 10000 STEP .3
|
|
19 Z = SIN (X) * 17 + 18
|
|
20 FOR Y = 0 TO Z
|
|
21 PRINT " ";
|
|
22 NEXT Y
|
|
23 PRINT "XXXX"
|
|
30 NEXT X
|
|
40 GOTO 10
|