| /home/chloe/ASDV-Java/Semester 2/Assignments/lab8_ChloeFontenot/src/main/java/com/chloefontenot/lab8_chloefontenot/Animal.java |
/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template */ package com.chloefontenot.lab8_chloefontenot; /** * * @author chloe */ public abstract class Animal { public abstract String sound(); }