/**
    prints a lovely greeting to the screen

    can compile this to Java bytecode using the command:
        javac Hello.java
    can run this bytecode using the Java Virtual 
    Machine (JVM) using the command:
        java Hello
        
    @author Sharon Tuttle
    @version 2015-08-26
*/

public class Hello
{
    /**
        prints a lovely greeting to the screen

        @param args - not used
    */

    public static void main(String[] args)
    {
        System.out.println("Hello, 235!");        
    }
}