Learning Ruby and came across this example in a tutorial
x = 10
5.times do |x|
puts "x inside the block: #{x}"
end
puts "x outside the block: #{x}"
It outputs the following
x inside the block: 0
x inside the block: 1
x inside the block: 2
x inside the block: 3
x inside the block: 4
x outside the block: 10
How does x increment inside the block? This must be an incredibly simple problem.