Help for this page

Select Code to Download


  1. or download this
        use IO::Scalar;
        my $data = "";
        my $fh = IO::Scalar->new( \$data );
    
  2. or download this
        use IO::String;
        my $data = "";
        my $fh = IO::String->new( $data );