RosettaCodeData/Task/Inheritance-Multiple/Nemerle/inheritance-multiple.nemerle
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

11 lines
123 B
Text

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