@lbrandy
This slightly longer version works with older versions of perlPerl, it is the same except it uses print with \n instead of "say" so you can easily test it.
print+(Fizz)[$_%3].(Buzz)[$_%5]||$_,$/for 1..100
You are right, when the index [$%3] is zero the expresstion (Fizz)[$%3] evaluates to the first (and only) element Fizz , when the index is any any other value the index is out of range and the expression evaluates to undef.
@Michiel de Mare
I know this is only half serious, but what is the point of monkeypatching a few functions in a golf match context? You could monkeypatch in the fizzbuzz function itself and just call
100.fb
or even
1.f
Three chars of ruby code (not counting the monkeypatch :-)
