=head1 SYNOPSIS
- open($fh,"<...",\$scalar);
+ open($fh, "<", \$scalar);
+ open($fh, ">", \$scalar);
+ open($fh, ">>", \$scalar);
+
+ open($fh, "<...", \$scalar); # for example open($fh, "<:crlf", \$scalar);
+ open($fh, ">...", \$scalar); # for example open($fh, ">:utf8", \$scalar);
+ open($fh, ">>..", \$scalar);
=head1 DESCRIPTION
+Open scalars for "in memory" input and output. The scalars will
+behave as if they were files.
+
=cut