Skip to content

Instantly share code, notes, and snippets.

@nomuken
Last active August 29, 2015 14:05
Show Gist options
  • Save nomuken/1eb71cbbf18f928d5708 to your computer and use it in GitHub Desktop.
Save nomuken/1eb71cbbf18f928d5708 to your computer and use it in GitHub Desktop.
fizzbuzz for ruby
for i in 1..ARGV[0].to_i do
puts i%15==0&&"fizzbuzz" || i%3==0&&"fizz" || i%5==0&&"buzz" || i
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment