public static void Main()
Bird test = new Bird("duck", "Patrick", "swimming", 12, true);
if (test.getSpecies() == "duck" &&
test.getName() == "Patrick" &&
test.getHobby() == "swimming" &&
Console.WriteLine("Congradulations! You correctly implemented the Bird Class :)");
Console.WriteLine("Something is still not quite right!");