source: trunk/third/perl/ext/IO/IO.pm @ 10724

Revision 10724, 471 bytes checked in by ghudson, 27 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r10723, which included commits to RCS files with non-trunk default branches.
Line 
1#
2
3package IO;
4
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
18      IO::Handle
19      IO::Seekable
20      IO::File
21      IO::Pipe
22      IO::Socket
23
24For more information on any of these modules, please see its respective
25documentation.
26
27=cut
28
29use IO::Handle;
30use IO::Seekable;
31use IO::File;
32use IO::Pipe;
33use IO::Socket;
34
351;
36
Note: See TracBrowser for help on using the repository browser.