The only real challenge here is turning it in a golf match.
Updated. Now 70 characters in Ruby, 8 characters behind Perl:
1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
Allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo', nil + nil == '') would help us a lot. We can monkeypatch Ruby to support this:
class Symbol
def +(other)
to_s + other.to_s
end
end
class NilClass
def +(other)
other.to_s
end
end
Now we're down to 58 characters, not counting the monkeypatch, 4 less than Perl:
1.upto(100){|_|s=[:Fizz][_%3]+[:Buzz][_%5];puts s!=''?s:_}
Updated. I found the best Ruby solution in comp.lang.ruby. 56 characters, but using ?d for 100 is sinking pretty damn low, IMHO.
1.upto(?d){|i|i%3<1&&x=:Fizz;puts i%5<1?"#{x}Buzz":x||i}
Which language features (that we cannot add by monkeypatching) would make this even shorter?
- an implicit variable (_) for blocks (Perl has this)
- the empty string evaluating to false (Perl has this. Zero (0) too is false.)
With these features, fizzbuzz would look like this (46 characters):
1.upto(100){puts [:Fizz][_%3]+[:Buzz][_%5]||_}
@lbrandy: golfscript is very cool. I got fizzbuzz down to 43 characters, but there's definitely room for improvement:
101,(;{\..3%'''Fizz'if\5%'''Buzz'if+\or}%n*
Updated. I've got it down to 37 characters, lbrandy, building on your solution (which is 40 characters, incidentally). You can save two characters by replacing <1 by !, twice. And another one by creating an 0..99 array and incrementing the number in the loop, instead of creating a 0..100 array and throwing away the first element.
100,{)..3%!'Fizz'*\5%!'Buzz'*+\or}%n*
Amazing what you can do with 36 primitives and 4 datatypes! A new addiction is born.