This commit is contained in:
Dmitry Boulytchev 2020-01-26 07:58:11 +03:00
parent c09a3b36b6
commit 33ec55e76e
6 changed files with 41 additions and 1 deletions

View file

@ -0,0 +1,2 @@
Number of commands-line arguments: 1
arg [0 ] = "./test009"

View file

@ -0,0 +1,7 @@
local i;
printf ("Number of commands-line arguments: %d\n", sysargs.length);
for i := 0, i < sysargs.length, i := i + 1 do
printf (" arg [%-2d] = %s\n", i, sysargs[i].string)
od

View file

@ -0,0 +1 @@
0