This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make pp_reverse fetch the lexical $_ from the correct pad
[perl5.git] / lib / open3.pl
1 # This legacy library is deprecated and will be removed in a future
2 # release of perl.
3 #
4 # This is a compatibility interface to IPC::Open3.  New programs should
5 # do
6 #
7 #     use IPC::Open3;
8 #
9 # instead of
10 #
11 #     require 'open3.pl';
12
13 package main;
14 use IPC::Open3 'open3';
15 1