appargs.bmx 167 B

123456789
  1. ' appargs.bmx
  2. ' print the command line arguments passed to the program at runtime
  3. Print "Number of arguments = "+AppArgs.length
  4. For a$=EachIn AppArgs
  5. Print a$
  6. Next