Statement Ruby

1.upto 3 do |x|
  puts x
end
# 1
# 2
# 3
1.upto(3) { |x| puts x }
# 1
# 2
# 3