Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 148 Bytes

use_times.md

File metadata and controls

15 lines (13 loc) · 148 Bytes

Use Fixnum#times

Use

for i in 1..10
  puts 'My iteration'
end

Rather than

5.times do
  puts 'My iteration'
end