Skip to content

Instantly share code, notes, and snippets.

/ruby.rb Secret

Created May 11, 2017 19:36
Show Gist options
  • Save anonymous/c5e5f1083560b32cb8b131f3e6e8c534 to your computer and use it in GitHub Desktop.
Save anonymous/c5e5f1083560b32cb8b131f3e6e8c534 to your computer and use it in GitHub Desktop.
x = 1
while x <= 10
x++
next unless (x % 2) == 0
puts x
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment