in Ruby it's easy to tell loop to go to next item (1..10).each do |a| next if a.even? puts aend result => 13 579 but what if I need to call next from ...
確定! 回上一頁