5 lines
97 B
Text
5 lines
97 B
Text
SPLIT ARGUMENT$ BY " " TO TOK$ SIZE len_array
|
|
|
|
FOR i = 1 TO len_array - 1
|
|
PRINT TOK$[i]
|
|
NEXT i
|