[ Sequence ] prepend: [ Text ]

var x := Sequence << 1 ; 2 ; 3.
x append: 0.
x prepend: 9.
Pen write: x, stop.