Buddha Buck wrote:
> 
> >         my filehandle fh; fh->new(">>/tmp/appendablelog");
> 
> Ugh...  How about...
> 
> my filehandle fh;
> fh->open(">>/tmp/appendablelog");

Has anyone read RFC 14?

   $FILE = open "</etc/motd";
   @doc = <$FILE>;

   $WEB = open http "http://www.yahoo.com";
   @html = <$WEB>;

The next version (hopefully out this week) will clarify this syntax
further.

-Nate

Reply via email to