Data update

This commit is contained in:
Ingy döt Net 2024-10-16 18:07:41 -07:00
commit 52a6ef48dd
10248 changed files with 63675 additions and 6796 deletions

View file

@ -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