[ Sequence ] each: [ Block ]

>> x := Sequence ← 1 ; 2 ; 3.
x each: { :x
Out write: x, stop.
}.
1
2
3