RosettaCodeData/Task/Delegates/Smalltalk/delegates-3.st

9 lines
131 B
Smalltalk
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
|d|
d := Delegator new.
d operation.
-> 'default implementation'
d delegate:(Thingy new).
d operation.
-> 'thingy implementation'