This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
Add IO extension
[perl5.git]
/
ext
/
IO
/
IO.pm
Commit
Line
Data
8add82fc
1
#
2
3
package IO;
4
5
use IO::Handle;
6
use IO::Seekable;
7
use IO::File;
8
use IO::Pipe;
9
use IO::Socket;
10
11
1;
12