add classy extenstion task solution

This commit is contained in:
Ola Hamza 2026-03-14 17:08:39 +01:00
parent 47ec309c1e
commit cce7a1b7dc

View File

@ -0,0 +1,4 @@
from preloaded import Animal
class Cat(Animal):
def speak(self):
return f"{self.name}: Meows."