5 lines
116 B
Text
5 lines
116 B
Text
text$ = "Hello,How,Are,You,Today"
|
|
FOR i = 1 to 5
|
|
textArray$(i) = word$(text$,i,",")
|
|
print textArray$(i);" ";
|
|
NEXT
|