RosettaCodeData/Task/Inheritance-Multiple/Io/inheritance-multiple.io

13 lines
323 B
Io
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
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"