Nathan Wiger wrote:
> > This RFC proposes to remove indirect object syntax
> 
> Please show me how to write:
> 
>    print STDERR @stuff;
> 
> without it, while keeping it a method of the STDERR filehandle, and
> without requiring ->.

Hopefully STDERR as a "filehandle" is going away.  Assuming it is 
replaced by $stderr or stderr(), then clearly you could write

   $stderr->print @stuff;

or

   stderr()->print @stuff;

-- 
John Porter

        We're building the house of the future together.

Reply via email to