We're going to write a simple Java program with the following lines, in IntelliJ. Note the shortcuts for main and sout.
package eecs1021;
public class MyFirstClass {
public static void main(String[] args) {
System.out.println("Hello. This is a simple Java program.");
;
}
}