[ Boolean ] and: [ Boolean ]

>> x := ( 2 > 1 ) and: ( 3 > 2 ).
>> y := ( 2 > 1 ) and: ( 2 > 3 ).
Out write: x, stop.
Out write: y, stop.
True
False