Hey,
[...]
> Very frustrating!
[...]
Haha! There was a stream of FizzBuzz question on the IRC (#ruby on
irc.freenode.net) for some bizarre reason :)
Not really an answer to your question, but one day I could not sleep and was reading said channel looking at all the FizzBuzz implementations, and this was born:
http://github.com/kwilczynski/fizzbuzz
This will give you: FB.fizzbuzz(1, 100); or if you do this:
class FizzBuzz ; class << self ; alias :fb :fizzbuzz ; end ; end
Then even this: FB.fb(1, 100).
Anyway, its a silly project :) And different approach to solving this problem :)
KW