Statement Ruby

1.upto(10) do |x|
  puts x
  break if x == 3
end
# 1
# 2
# 3