// This is my first Java program public class Hello2 { /* ----------------------------------------------- The program always starts in the method "main" ----------------------------------------------- */ public static void main(String[] args) { System.out.println("Hello Class"); // Prints to terminal System.out.println(" How is everyone doing so far ?"); } }