[ Sequence ] sort: [ Block ]

>> x := Sequence ← 2 ; 1 ; 3.
x sort: { :a :b <- a < b.}.
Out write: x, stop.
Sequence ← 3 ; 2 ; 1