RosettaCodeData/Task/Inheritance-Multiple/Io/inheritance-multiple.io
2016-12-05 22:15:40 +01:00

12 lines
323 B
Io

Camera := Object clone
Camera click := method("Taking snapshot" println)
MobilePhone := Object clone
MobilePhone call := method("Calling home" println)
CameraPhone := Camera clone
CameraPhone appendProto(MobilePhone)
myPhone := CameraPhone clone
myPhone click // --> "Taking snapshot"
myPhone call // --> "Calling home"