Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,690 questions

55,442 answers

573 users

How to redo the current iteration of for loop in Ruby

2 Answers

0 votes
for x  in  1..6
    x += 1  
    puts "x=#{x} x += 1"
    redo if x == 3
end
  
  
  
# run:
#
# x=2 x += 1
# x=3 x += 1
# x=4 x += 1
# x=5 x += 1
# x=6 x += 1
# x=7 x += 1
#

 



answered Dec 22, 2020 by avibootz
0 votes
for i in 1..4 do
  puts "i=#{i}"

  i += 1 and redo if i == 1
  
  puts 'After redo'
end
  
  
  
# run:
#
# i=1
# i=2
# After redo
# i=2
# After redo
# i=3
# After redo
# i=4
# After redo
# 

 



answered Dec 22, 2020 by avibootz

Related questions

1 answer 249 views
1 answer 223 views
223 views asked Dec 22, 2020 by avibootz
2 answers 222 views
222 views asked Dec 22, 2020 by avibootz
1 answer 247 views
247 views asked Aug 31, 2020 by avibootz
...