RosettaCodeData/Task/Extend-your-language/Smalltalk/extend-your-language-3.st

6 lines
156 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(a > 0) or:(b > 10)
ifBoth:[ 'both' printCR]
ifFirst:[ 'only first' printCR ]
ifSecond:[ 'only second' printCR ]
ifNone: [ 'none' printCR ]