RosettaCodeData/Task/Inheritance-Multiple/Nemerle/inheritance-multiple.nemerle

12 lines
123 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
interface ICamera {
// ...
}
class MobilePhone {
// ...
}
class CameraPhone: MobilePhone, ICamera {
// ...
}