public abstract class Animal
public static void Main (string[] args) {
Zoo BtownZoo = new Zoo("Happy Pets", "Bloomingon", 8);
Animal[] arr = new Animal[] {
new Goat("Goatee", 3, false, false, false),
new Goat("Jeni", 4, true, true, true),
new Goat("Jumper", 2, true, true, false),
new Goat("Kid", 1, true, true, true),
new Goat("Pete", 2, false, false, true),
new Pony("Bolt", 3, false, 50, 5, true, false),
new Pony("Colt", 4, true, 30, 10, true, true)
foreach (Animal a in arr) BtownZoo.AddAnimal(a);
ZooOperations ZooInc = new ZooOperations(BtownZoo);