Help for this page

Select Code to Download


  1. or download this
       use if 1, $foo;
    
  2. or download this
       my $foo;
       BEGIN { $foo = $ENV{SERIALIZER} || "Storable" }
       use if 1, $foo;
    
  3. or download this
       BEGIN { eval "use ".($ENV{SERIALIZER}||"Storable"); }