Re: RFC 30 (v4) STDIN, STDOUT, STDERR, ARGV, and DATA should become scalars

[email protected] (Tom Christiansen) Sun, 17 Sep 2000 20:28:14 -0600
Newsgroups perl.perl6.language.io
Message-ID <26106.969244094@chthon>
>This is already allowed.  It's called "passing in a bareword".  
>And barewords are just strings.  Are you proposing
>that "a bareword should now mean a filehandle", so that

>	copydata(STDIN, STDOUT);

>means something different from 

>	copydata('STDIN', 'STDOUT');

>or

>	copydata(STDIN => "STDOUT");

Try that with

    sub copydata(**);

--tom