[ Sequence ] append: [ Text ]

>> x := Sequence new.
x append: 3.
x ; 3.
x ~ 3.
Out write: x, stop.
Sequence ← 3 ; 3 ; 3