[ Sequence ] each: [ Block ]

var x := Sequence << 1 ; 2 ; 3.
x each: { :x
Pen write: x, stop.
}.