5 lines
165 B
Smalltalk
5 lines
165 B
Smalltalk
If2 when:(a > 0) or:(b > 10)
|
|
ifBoth:[ 'both' printCR]
|
|
ifFirst:[ 'only first' printCR ]
|
|
ifSecond:[ 'only second' printCR ]
|
|
ifNone: [ 'none' printCR ]
|