http://qs1969.pair.com?node_id=63063


in reply to Re: Re: Re: Head to numb to see it.....
in thread Head to numb to see it.....

There have to be exceptions to every rule :-). This was obviously not the problem with the present question though. And, I am inclined think this is perhaps a little bug:

sub blah { print shift; } blah($s ++) for 1 .. 9; # works fine blah $s ++ for 1 .. 9; # syntax error print $s ++ for 1 .. 9; # syntax error print($s ++) for 1 .. 9; # syntax error

The latter print() case is probably related to print()'s prototype for optionally accepting a filehandle).