/**
 * AssignmentZero - Homework Assignment 0 <br><br>
 *
 * File:  AssignmentZero.java
 *
 * Create a minimal Java application... <br><br>
 *
 * Retrieve a command line argument to produce two lines of output: <br><br>
 *
 * Hello Java World! <br>
 * My name is 'Bary W Pollack' <br><br>
 *
 * where 'Bary W Pollack' comes from the command line <br>
 *
 * @author Bary W Pollack
 * @version 01/15/02 - 15:00 - Updated
 */

public class AssignmentZero {

    /**
     * This is the main method -- invoked automatically as the entry point for every Java program
     *
     * @param args The data to be displayed on the second line, after "My name is ..."
     * @return void
     */

    public static void main(String args[]) {
        System.out.println("Hello Java World!");
        System.out.print("My name is");
        for (int i = 0; i < args.length; i++)
            System.out.print(" " + args[i]);
        System.out.println();
    }

}
