// This is our first program. The "class" contains the program and must // be named identical to the filename. (convention to capitalize) /** * First Last Name * Date * Which Assignment is this * this is a multiline comment. */ public class HelloWorld /** HelloWorld is the name of the program and the name of the class. * */ { public static void main(String[] args) { // anything you put in a " " is a String System.out.println("Hello World!"); } } // reserved words are words that are part of the language // SYNTAX - grammar rules