Ruby pour chaque continue
(1..10).each do |a|
next if a.even?
puts a
end
Shy Stoat
(1..10).each do |a|
next if a.even?
puts a
end