home *** CD-ROM | disk | FTP | other *** search
- ; *****************************************************
- ; Example19.ftp
- ; =============
- ; This example shows the use of Numeric Variables in
- ; conjunction with execution parameters.
- ; -----------------------------------------------------
-
- NumVariable i
-
-
- Let i=-1
- :Aftur
- Let I=I+1
- if %%i%% <= %%ParamCount%% then
- Message "Parameter %%i%% = %%Param[%%i%%]%%"
- goto Aftur
- endif
-
-