Typo in pod/perldebtut.pod
[p5sagit/p5-mst-13.2.git] / ext / PerlIO / encoding / encoding.pm
CommitLineData
59035dcc 1package PerlIO::encoding;
2our $VERSION = '0.01';
3use XSLoader ();
4use Encode;
5XSLoader::load 'PerlIO::encoding';
61;
7__END__
8
9=head1 NAME
10
11PerlIO::encoding - encoding layer
12
13=head1 SYNOPSIS
14
2dc05cb3 15 open($fh, "<", \$scalar);
16 open($fh, ">", \$scalar);
17 open($fh, ">>", \$scalar);
18
19 open($fh, "<...", \$scalar); # for example open($fh, "<:crlf", \$scalar);
20 open($fh, ">...", \$scalar); # for example open($fh, ">:utf8", \$scalar);
21 open($fh, ">>..", \$scalar);
59035dcc 22
23=head1 DESCRIPTION
24
2dc05cb3 25Open scalars for "in memory" input and output. The scalars will
26behave as if they were files.
27
59035dcc 28=cut
29
30