// HelloWorld Project // Source code file Hello.java // A Hello World program is traditionally the first program // that one writes when learning a new computer language. // Print the message "Hello, World!" public class Hello { public static void main(String[ ] args) { System.out.println("Hello, World!"); } }