[ List ] each: [ Block ]

☞ x ≔ List ← 1 ; 2 ; 3.
x each: { :x
✎ write: x, stop.
}.
1
2
3