blob: 1ba05ca9165f967c748af30ae1af1f33d59af76e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#
package IO;
=head1 NAME
IO - load various IO modules
=head1 SYNOPSIS
use IO;
=head1 DESCRIPTION
C<IO> provides a simple mechanism to load all of the IO modules at one go.
Currently this includes:
IO::Handle
IO::Seekable
IO::File
IO::Pipe
IO::Socket
For more information on any of these modules, please see its respective
documentation.
=cut
use IO::Handle;
use IO::Seekable;
use IO::File;
use IO::Pipe;
use IO::Socket;
1;
|