[ Sequence ] shift

>> x := Sequence ← 1 ; 2 ; 3.
>> y := x shift.
Out write: y, stop.
Out write: x, stop.
1
Sequence ← 2 ; 3