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 | |
---|
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 all 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 | |
---|
Note: See
TracBrowser
for help on using the repository browser.