CodeHS Java9.2.6 Students Part 1 StudentTester.java
public class StudentTester
{
    public static void main(String[] args)
    {
        
        /**
         * Create a student in the class of 2020
         */
         Student bill = new Student("bill", 2020);
         
         /**
         * Create a student athlete in the class of 2022
         * that is eligible and plays soccer.
         */
         StudentAthlete robert = new StudentAthlete("robert", 2022, "soccer", true);
         
         // Print out both objects
    }
}
