Tagged Questions
2
votes
2answers
234 views
Can I jump back to the beginning of a method using 'redo' in Ruby?
In the Poignant Guide this example of the redo keyword is given:
class LotteryTicket
def self.new_random
new(rand(25) + 1, rand(25) + 1, rand(25) + 1)
rescue ArgumentError
redo
end
end
...