Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
472 B

  1. #
  2. package IO;
  3. =head1 NAME
  4. IO - load various IO modules
  5. =head1 SYNOPSIS
  6. use IO;
  7. =head1 DESCRIPTION
  8. C<IO> provides a simple mechanism to load some of the IO modules at one go.
  9. Currently this includes:
  10. IO::Handle
  11. IO::Seekable
  12. IO::File
  13. IO::Pipe
  14. IO::Socket
  15. For more information on any of these modules, please see its respective
  16. documentation.
  17. =cut
  18. use IO::Handle;
  19. use IO::Seekable;
  20. use IO::File;
  21. use IO::Pipe;
  22. use IO::Socket;
  23. 1;