mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
de5da4b7f6
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]