8 lines
154 B
Text
8 lines
154 B
Text
'these two both return ALL args
|
|
? COMMAND$
|
|
? COMMAND$(0)
|
|
|
|
DO WHILE(LEN(COMMAND$(i)))
|
|
PRINT "The argument "; i; " is "; COMMAND$(i)
|
|
i = i + 1
|
|
LOOP
|