Pre-Programming Drill #0

Due: No due date but you should do this as soon as possible
Goal:  Successfully enter, compile, and run a Java program

Here is the Hello World program given in class:

        /*
        *  Normally you would put your name and assignment info here
        *  This program prints out "Hello, World".
        */
       public class HelloWorld
       {
           public static void main(String[] args)
           {
               System.out.println("Hello, world!");
           }
       }
    

Write a Java program that prints:

      Hello World,
     from My Name

Replace "My Name" with your actual name.

You do not need to turn this in or show it to your instructor.  It is intended to get you started to figure out how to enter and compile a program.