/* Caitlin Ross
 * ross0272@algonquinlive.com
 * Student #040750891
 * CST8284 Object Oriented Programming (Java)
 * Section 451
 * Assignment 6
 * Oct 25, 2020
 */
package assignmentSix;

public class QuestionOne {

    public static void main(String[] args) {
        // Instantiate the pets
        Animal newPuppy = new Animal("Baxter", 1, 0.26, 2.3);
        Snake petSnake = new Snake("Monty", 3, 1.03, 1.8);
        
        // Display the pets
        System.out.println(newPuppy.display());
        System.out.println(petSnake.display());
    }
}
