Re: RFC 30 (v4) STDIN, STDOUT, STDERR, ARGV, and DATA should become scalars
[email protected] (Tom Christiansen) Sun, 17 Sep 2000 20:27:25 -0600
| Newsgroups | perl.perl6.language.io |
|---|---|
| Message-ID | <21666.969244045@chthon> |
>> What if it's an anonymous stream?
>How do you open an anonymous stream?
Me? This way:
local(*HITHER, *THITHER);
pipe(HITHER, THITHER) ......
or, I suppose,
my($hither, $thither);
pipe($hither, $thither) ......
or even
pipe(my $hither, $thither) ......
Why, how do *you* open an anonymous stream? :-)
--tom