C Sharp (C#) - Polymorphism and Abstract Classes
Find the problem in this polymorphism example:
class Animal { public virtual string Speak() => "Animal"; }
class Cat : Animal { public new string Speak() => "Meow"; }