Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/Loops-Foreach/Commodore-BASIC/loops-foreach.basic
Normal file
11
Task/Loops-Foreach/Commodore-BASIC/loops-foreach.basic
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
10 DIM A$(9) :REM DECLARE STRING ARRAY
|
||||
20 REM *** FILL ARRAY WITH WORDS ***
|
||||
30 FOR I = 0 TO 8
|
||||
40 READ A$(I)
|
||||
50 NEXT
|
||||
60 REM *** PRINT ARRAY CONTENTS ***
|
||||
70 FOR I = 0 TO 8
|
||||
80 PRINT A$(I)" ";
|
||||
90 NEXT
|
||||
100 END
|
||||
1000 DATA THE, QUICK, BROWN, FOX, JUMPS, OVER, THE, LAZY, DOG.
|
||||
Loading…
Add table
Add a link
Reference in a new issue