RosettaCodeData/Task/Inheritance-Multiple/Nemerle/inheritance-multiple.nemerle
2023-07-01 13:44:08 -04:00

11 lines
123 B
Text

interface ICamera {
// ...
}
class MobilePhone {
// ...
}
class CameraPhone: MobilePhone, ICamera {
// ...
}