Due: Monday, May 19
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.
Show to your instructor for credit.