//******************************************* // ITEC 120 -- Example 1 // Students are to copy this program // compile and execute it. //****************************************** public class example1 { // outputs some comments on ITEC 120 public static void main (String[] args) { System.out.println("------------------------------"); System.out.println("Learning Java programming is a"); System.out.println(" DREAM COME TRUE!!!!"); System.out.println("------------------------------"); } }