Help for this page

Select Code to Download


  1. or download this
    use Storable;
    use strict;
    ...
    
    $Storable::Deparse = 1;
    Storable::nstore($coderef, 'frozen_ref');
    
  2. or download this
    use Storable;
    use strict;
    ...
    $Storable::Eval = 1;
    my $coderef = Storable::retrieve('frozen_ref');
    &$coderef();