Skip to content

Instantly share code, notes, and snippets.

@atton
Created August 28, 2012 08:47
Show Gist options
  • Save atton/3496304 to your computer and use it in GitHub Desktop.
Save atton/3496304 to your computer and use it in GitHub Desktop.
next test
# 0 から 5 まで出力
(0..5).each do |num|
if num == 3
next # 3だけ飛ばす
end
puts num
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment