/**
 * Our first Java class
 *
 * All code in a Java program must belong to a class.
 * There is typically one class per file, and the file name is ClassName.java
 * Compile this code using
 *     javac Hello.java
 * Run the compiled bytecode Hello.class using
 *     java Hello
 * 
 * @author Sara Sprenkle
 */
public class Hello {  //File must be saved as Hello.java
  
   /**
    * Called when user runs 
    *  java Hello
    */
   public static void main(String[] args) { // Blocks start/end with {}
       System.out.print("Hello, World!"); // Lines end with ;
       System.out.println("More stuff!"); // Lines end with ;
   }
}
