//******************************************************************** // helloWorld1.java Author: Sophie Quigley // // Whenever you learn a new language, you must say hello to the world // //******************************************************************** class helloWorld1 { public static void main(String args[]) { System.out.println("Hello World!"); } }