http://www.perlmonks.org?node_id=767637


in reply to Re^2: Golf Challenge: FizzBuzz
in thread Golf Challenge: FizzBuzz

#2345678901234567890123456789012345678901234567 warn+(Fizz)[$_%3].(Buzz)[$_%5]||$_,$/for 1..100
also works with one fewer characters.
#2345678901234567890123456789012345678901234 perl -M5.01 -e 'say+(Fizz)[$_%3].(Buzz)[$_%5]||$_,for 1..100'
But this isn't really golf since you need to add -M5.01 to the calling statement.

Replies are listed 'Best First'.
Re^4: Golf Challenge: FizzBuzz
by shmem (Chancellor) on Jun 02, 2009 at 18:28 UTC

    As you can see from the date of the post to which you answered, it was written previous to the release of perl5.10 - there is no 'say' in 5.8.8...