/* Hello.java * This is our first example program in the Java language. * The program is very simple. We just output a message to the screen. */ public class Hello { public static void main(String [] args) { System.out.printf("Hello, world!"); } }