Help for this page

Select Code to Download


  1. or download this
    my $doc, $zipped;
    my $writer = new XML::Writer(OUTPUT=>\$doc, ...);
    # write stuff ...
    $writer->end();
    gzip \$doc => \$zipped;
    
  2. or download this
    my $copy = $doc;
    gzip \$copy => \$zipped;