Skip to content

Instantly share code, notes, and snippets.

@iansu
Last active June 7, 2016 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iansu/25d527575485f1c534e526f67b9c35bf to your computer and use it in GitHub Desktop.
Save iansu/25d527575485f1c534e526f67b9c35bf to your computer and use it in GitHub Desktop.
FizzBuzz in Ruby
for i in 1..100
print "#{i} "
print "fizz" if i % 3 == 0
print "buzz" if i % 5 == 0
print "\n"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment