Data update
This commit is contained in:
parent
81fd053722
commit
52a6ef48dd
10248 changed files with 63675 additions and 6796 deletions
|
|
@ -0,0 +1,13 @@
|
|||
// The program name and the directory it was called from are in
|
||||
// param[0] , so given the axample of myprogram -c "alpha beta" -h "gamma"
|
||||
|
||||
for x := 0 to paramcount do
|
||||
writeln('param[',x,'] = ',param[x]);
|
||||
|
||||
// will yield ( assuming windows and the c drive as the only drive) :
|
||||
|
||||
// param[0] = c:\myprogram
|
||||
// param[1] = -c
|
||||
// param[2] = alpha beta
|
||||
// param[3] = -h
|
||||
// param[4] = gamma
|
||||
Loading…
Add table
Add a link
Reference in a new issue