Sequence

var a :=
Sequence new
# ['aaa']
# ['bbb']
# ['ccc'].

var b := Sequence << ['x'] ; ['y'].
Pen write: a, stop.
Pen write: b, stop.