練習2の答え

a := #( 1 2 3 4 5 6 7 8 9 10 )
b := a select: [: i | i even]
b do: [: i | Transcript show: i ; cr]

select を実行後に、b inspect を実行し、b の中身を見てみよう。