/** * Simple2.java * * Another really simple Java program, this time with data * * @author Dave Musicant * CS117, Winter 2005 * date: January 5, 2005 */ /* 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); } }