1: //HelloConApp.java 2: //Displays a greeting on the screen. 4: public class HelloConApp 5: { 6: public static void main(String[] args) 7: { 8: System.out.println("\nHello, world!\n"); 9: } 10: }