Python
# Example of inheritance in Python
class Animal:
    def sound(self):
        pass

class Dog(Animal):
    def sound(self):
        return "Woof!"

dog = Dog()
print("Dog Sound:", dog.sound())  # Output: Dog Sound: Woof!