Help for this page

Select Code to Download


  1. or download this
    use warnings;
    
  2. or download this
    use Storable qw{nstore retrieve};
    $Storable::Deparse = 1;
    $Storable::Eval = 1;
    
  3. or download this
    use Storable qw{nstore retrieve};
    no warnings q{once};
    $Storable::Deparse = 1;
    $Storable::Eval = 1;
    
  4. or download this
    use Storable qw{nstore retrieve};
    no warnings q{once};
    $Storable::Deparse = 1;
    $Storable::Eval = 1;
    use warnings q{once};
    
  5. or download this
    use Storable qw{nstore retrieve};
    {
    ...
        $Storable::Deparse = 1;
        $Storable::Eval = 1;
    }