// note that the name of a PUBLIC class is always the same // as the name of the file public class J01HelloWorld { // this is the main function, this is where the program will // start public static void main(String[] args) { System.out.println("Hello World"); } }