http://www.perlmonks.org?node_id=1081498

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?