public void eat() { Console.WriteLine("Eating!"); }
public void walk() { Console.WriteLine("Walking!"); }
public void bark() { Console.WriteLine("Woof!"); }
public void meow() { Console.WriteLine("Meowwww!"); }
static void Main(string[] args) {
Console.WriteLine("Breed: " + myDog.breed);
Console.WriteLine("Breed: " + myCat.breed);