[inseparable changes from match from perl-5.003_97b to perl-5.003_97c]
[p5sagit/p5-mst-13.2.git] / ext / IO / IO.pm
CommitLineData
8add82fc 1#
2
3package IO;
4
84dc3c4d 5=head1 NAME
6
7IO - load various IO modules
8
9=head1 SYNOPSIS
10
11 use IO;
12
13=head1 DESCRIPTION
14
15C<IO> provides a simple mechanism to load all of the IO modules at one go.
16Currently this includes:
17
2a0cf753 18 IO::Handle
19 IO::Seekable
20 IO::File
21 IO::Pipe
22 IO::Socket
84dc3c4d 23
24For more information on any of these modules, please see its respective
25documentation.
26
27=cut
2a0cf753 28
29use IO::Handle;
30use IO::Seekable;
31use IO::File;
32use IO::Pipe;
33use IO::Socket;
34
351;
36