1: /** 2: * A program class (it has a main method) that does nothing. 3: * 4: * @author Mark Young (A00000000) 5: */ 6: public class EmptyProgram { 8: public static void main(String[] args) { 9: } 11: }