# list0301.rb
# 各要素の表示に配列変数の参照を使う

a = [ 2, 3, 4, 5, 2.0, 3.0, 4.0, 5.0 ]
for i in 0..7
  puts a[i]
end