Rubyの範囲

範囲を作る

range = 1..10

範囲を作る:ピリオド3つ

ピリオドを3つにすると、最後の要素を含めない

range = 1...10  # 1~9

イテレータ:each

range.each do |num|
  print num
end