Really, really basic block in Ruby:
list = (1..125).to_a
list.each do |x|
print x if 125 % x = 0
end
Gives me:
ZeroDivisionError: divided by 0
from (irb):3:in `%'
from (irb):3
from (irb):2:in `each'
from (irb):2
Yet the block "puts x" returns 1 through 125, just like it should.
What is going on?