Initial import from FreeBSD RELENG_4:
[games.git] / contrib / perl5 / ext / IO / IO.pm
1 #
2
3 package IO;
4
5 =head1 NAME
6
7 IO - load various IO modules
8
9 =head1 SYNOPSIS
10
11     use IO;
12
13 =head1 DESCRIPTION
14
15 C<IO> provides a simple mechanism to load some of the IO modules at one go.
16 Currently this includes:
17
18       IO::Handle
19       IO::Seekable
20       IO::File
21       IO::Pipe
22       IO::Socket
23
24 For more information on any of these modules, please see its respective
25 documentation.
26
27 =cut
28
29 use IO::Handle;
30 use IO::Seekable;
31 use IO::File;
32 use IO::Pipe;
33 use IO::Socket;
34
35 1;
36