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

12 lines
123 B
Text
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
interface ICamera {
// ...
}
class MobilePhone {
// ...
}
class CameraPhone: MobilePhone, ICamera {
// ...
}