Skip to content

Instantly share code, notes, and snippets.

@d0ppler
Last active August 29, 2015 14:19
Show Gist options
  • Save d0ppler/a01bc0ad887f11ca4653 to your computer and use it in GitHub Desktop.
Save d0ppler/a01bc0ad887f11ca4653 to your computer and use it in GitHub Desktop.
(1..100).each { |i|
x = ''
x +='Fizz' if i%3==0
x +='Buzz' if i%5==0
puts(x.empty? ? i :x) # whats this: ? i :x
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment