in reply to Re: Re: Confused about unary +
in thread Confused about unary +

printf

Note also:

$ perl -wle 'print("a")' a $ perl -wle 'print ("a")' print (...) interpreted as function at -e line 1. a $ perl -wle 'print ("a")' a $

You only get the warning if there's exactly one space between printf? and the opening paren.

Abigail