in reply to Rate my fizzbuzz
What techniques for making my code more compact and less maintainable have I overlooked?
#!/usr/bin/perl print +($_%3==0&&'fizz').($_%5==0&&'buzz')||$_,"\n" for 1 .. 60; [download]