zdm has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/env perl use strict; use warnings; use PerlIO::via::QuotedPrint; # or any other PerlIO::via:: package fro +m CPAN binmode STDOUT, q{:via(QuotedPrint)}; open my $fh, q{>&}, q{STDOUT}; 1; __END__
This code runs with error:
No package specified at ./1.pl line 10
Can anybody help with this?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Can't clone STD handle with :via layer
by tobyink (Canon) on Apr 08, 2014 at 14:07 UTC | |
|
Re: Can't clone STD handle with :via layer
by frozenwithjoy (Priest) on Apr 08, 2014 at 13:53 UTC | |
by zdm (Beadle) on Apr 08, 2014 at 14:56 UTC | |
by tobyink (Canon) on Apr 08, 2014 at 15:07 UTC | |
by zdm (Beadle) on Apr 08, 2014 at 16:00 UTC |