/** * Simple2.java * * Another really simple Java program, this time with data * * @author Dave Musicant */ /* Note that the class name is the same as the file name. */ public class Simple2 { /** * The main method for this class: prints out a message to a * dialog window */ public static void main(String[] args) { String message = "Are we having fun yet?"; System.out.println(message); } }