RosettaCodeData/Task/Quoting-constructs/Smalltalk/quoting-constructs-11.st

8 lines
173 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
in the True class:
ifTrue: aBlock
^ aBlock value "I am true, so I evaluate the block"
in the False class:
ifTrue: aBlock
^ nil "I am false, so I ignore the block"