/** * Simple.java * * A really simple Java program. * These lines at the top are comments; they are not executed, but * they are used to describe what's going on in the program. Comments * at the top of the program describe what the program does and list * information such as the author and date of the program. * * @author Dave Musicant */ /* The next line is the class declaration. */ class Simple { /** * An example of a method (action). * This method must appear in any program that you want to run. */ public static void main(String[] args) { System.out.println("Hello, and welcome to CS117!"); } } /* This is the end of the program. */