Is there an equivalent of “continue” in Ruby? Technology Community › Category: Ruby › Is there an equivalent of “continue” in Ruby? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Yes, it’s called next. for i in 0..5 if i < 2 next end puts "Value of local variable is #{i}" end