Help for this page

Select Code to Download


  1. or download this
    syntax error at test.pl line 3, near "[,"
    Execution of test.pl aborted due to compilation errors.
    
  2. or download this
       use Compress::Zlib;
       my $str_to_compress='a big string';
       $compressed_str=compress($str_to_compress,1);
       $decompressed_str=uncompress($compressed_str);
       print $decompressed_str;