RosettaCodeData/Task/Repeat/Ruby/repeat.rb

8 lines
127 B
Ruby
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
4.times{ puts "Example" } # idiomatic way
def repeat(proc,num)
num.times{ proc.call }
end
repeat(->{ puts "Example" }, 4)