[ Sequence ] prepend: [ Text ]

☞ x ≔ Sequence ← 1 ; 2 ; 3.
x append: 0.
x prepend: 9.
✎ write: x, stop.
Sequence ← 9 ; 1 ; 2 ; 3 ; 0