9 lines
217 B
Text
9 lines
217 B
Text
' Command line arguments including program name
|
|
PRINT "Entire command line: ", ARGUMENT$
|
|
|
|
SPLIT ARGUMENT$ BY " " TO cli$ SIZE args
|
|
PRINT "Skip program name:";
|
|
FOR i = 1 TO args - 1
|
|
PRINT " " & cli$[i];
|
|
NEXT
|
|
PRINT
|