class HelloWorld /* States that the name of the class is Hello World */ {//begin class public static void main(String args[]) /* Creates a "method" (collection of code) called main, main runs automatically when a class is run */ {//begin main method System.out.println("Hello World"); }//end main method }//end class