Skip to content

Instantly share code, notes, and snippets.

@finsterthecat
Created June 24, 2013 03:03
Show Gist options
  • Save finsterthecat/5847511 to your computer and use it in GitHub Desktop.
Save finsterthecat/5847511 to your computer and use it in GitHub Desktop.
Now, am I hired or what?
1.upto(100).each do |x|
s = ""
s+= 'fizz' if (x % 3 == 0)
s += 'buzz' if (x % 5 == 0)
s = x.to_s if (s.empty?);
puts s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment