/* * @topic T00101 My first Java programs * @brief Hello program modified: prints a blank line * * The program prints a blank line and a couple of text lines. */ public class Hello2 { public static void main(String[ ]args) { System.out.println(); System.out.println("Hello from Bristol Community College"); System.out.println("Fall River Massachusetts"); } // end of main method } // end of class Hello2