/**
 * Java application that prints a CS 235 greeting to the screen
 *
 * compile using:
 *     javac Hello.java
 * run using:
 *     java Hello
 *
 * @author Sharon Tuttle
 * @version 2021-08-28
 */

public class Hello
{
    /**
     * prints a greeting to the screen
     *
     * @param args not used here
     */

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