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

11 lines
199 B
Smalltalk
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
Object
subclass:#Delegator
instanceVariableNames:'delegate'
delegate:something
delegate := something
operation
^ delegate
perform:#thing ifNotUnderstood:'default implementation'.