Files
mruby-mruby/test
KOBAYASHI Shuji de5da4b7f6 Fix coercing for first step counter in Numeric#step
Before:

  a=[]; 7.step(4, -3.0) { |c| a << c }; p a  #=> [7, 4.0]

After / Ruby:

  a=[]; 7.step(4, -3.0) { |c| a << c }; p a  #=> [7.0, 4.0]
2019-01-15 21:41:54 +09:00
..
2019-01-05 20:41:09 +09:00
2018-06-21 11:33:34 +09:00
2012-11-05 15:50:46 +09:00