/*  Name: Paul He
 *  PennKey: paulhe
 *
 *  Execution: java HelloWorld
 *
 *  Prints "Hello, World!". By tradition, this is everyone's first program.
 *
 */

public class HelloWorld {
    /**
     * This is a comment, it is not code. It is ignored by the computer.
     * Use it to take notes for yourself!
     */

    // this is also a comment
    public static void main(String args[]) {
        System.out.println("Hello, World!");
    }
}
