Create a session in repl.it with the following classes:
Edible: Abstract class. Should include a name and calorie attribute.
Food: Extends Edible. Should include a food group attribute
Drink: Extends Edible. Should include an attribute that determines if it is a soda/pop, and another attributes that determines if it is carbonated
All classes should include default constructors, parameterized constructors, getters/setters, as well as overriding the toString() and equals() methods.