// Commandline.js // import System; // This function reads the commandline arguments and prints them function PrintCommandLineArguments() { var args:String[] = System.Environment.GetCommandLineArgs(); var iValue:int; // Print the command-line arguments for (iValue in args) Console.WriteLine(args[iValue]); } PrintCommandLineArguments(); //
import System; // This function reads the commandline arguments and prints them function PrintCommandLineArguments() { var args:String[] = System.Environment.GetCommandLineArgs(); var iValue:int; // Print the command-line arguments for (iValue in args) Console.WriteLine(args[iValue]); } PrintCommandLineArguments(); //