Command Line Parameters Version 1
Purpose: Counts and displays command line arguments.
Description: The Imports statement allows us to write "Console.Writeline" instead of the longer "System.Console.Writeline". The Args parameter passed in to the Main module is an array containing the command line arguments. The For loop prints out each argument on a separate line, using & to concatenate strings together. |