[ Text ] compare: [ Text ]

>> x := ['abc'].
>> y := ['def'].
>> z := x compare: y.
>> q := y compare: x.
Out write: z, stop.
Out write: q, stop.
-3
3