BCX Console Demonstration Program s91.bas

' ======================================================= 
' Sample console mode program for BCX 
' Shows how easy it is to access command line parameters 
' ======================================================= 

DIM a AS INTEGER

PRINT "This program was launched from ", ARGV$[0] : PRINT
PRINT "The following command line arguments were found ..."

FOR a = 1 TO ARGC - 1
  PRINT ARGV$[a]
NEXT

Result:

Result not displayed for this example.