9 lines
251 B
Text
9 lines
251 B
Text
|
|
DIM collection$(8)
|
||
|
|
collection$() = "The", "quick", "brown", "fox", "jumps", \
|
||
|
|
\ "over", "the", "lazy", "dog."
|
||
|
|
|
||
|
|
FOR index% = 0 TO DIM(collection$(), 1)
|
||
|
|
PRINT collection$(index%) " ";
|
||
|
|
NEXT
|
||
|
|
PRINT
|