in reply to Re: Perl oddities
in thread Perl oddities

Normally this doesn't bother me unless I have to use parens

It's also kind of odd when your filehandle is not a simple scalar or bareword:

open $hash{foo}, ">", "foobar"; print { $hash{foo} } "Test\n";

Makes me shudder every time.