Skip to content

Instantly share code, notes, and snippets.

@gomasy
Last active December 30, 2015 22:29
Show Gist options
  • Save gomasy/7894784 to your computer and use it in GitHub Desktop.
Save gomasy/7894784 to your computer and use it in GitHub Desktop.
1.upto(100) { |i|
print i % 15 == 0 ? "Fizz Buzz, ":i % 3 == 0 ? "Fizz, ":i % 5 == 0 ? "Buzz, ":"#{i}, "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment