/* BlankProgram.java * This is a program with an empty body. * May be useful when starting something from scratch, or if you * just want to experiment with one or two Java statements to see * what they do, such as printing out the cosine of pi/3. */ public class BlankProgram // Tell compiler the name of the program. { public static void main(String [] args) { } }