Help for this page

Select Code to Download


  1. or download this
    D:\pscrpt\storable>perl -MMath::BigInt -MStorable -Mwarnings -le "$mbi
    + = Math::BigInt->new(12345); Storable::nstore(\$mbi, 'file.s'); $ret 
    += Storable::retrieve('file.s'); print $$ret; print ref($$ret);"
    12345
    Math::BigInt
    
  2. or download this
    D:\pscrpt\storable>perl -MMath::BigInt::Calc -MMath::BigInt -MStorable
    + -Mwarnings -le "$ret = Storable::retrieve('file.s'); print $$ret; pr
    +int ref($$ret);"
    Cannot restore overloading on ARRAY(0x23df904) (package Math::BigInt::
    +Calc) (even after a "require Math::BigInt::Calc;") at C:/_32/ap1600/l
    +ib/Storable.pm line 380, at -e line 1.
    
  3. or download this
    D:\pscrpt\storable>del file.s
    
    D:\pscrpt\storable>perl -MMath::BigInt -MStorable -Mwarnings -le "$mbi
    + = Math::BigInt->new(12345); Storable::nstore(\$mbi, 'file.s'); $ret 
    += Storable::retrieve('file.s'); print $$ret; print ref($$ret);"
    12345
    Math::BigInt
    
  4. or download this
    D:\pscrpt\storable>perl -MMath::BigInt -MStorable -Mwarnings -le "$ret
    + = Storable::retrieve('file.s'); print $$ret; print ref($$ret);"
    12345
    Math::BigInt
    
  5. or download this
    Byte order is not compatible at .... , at -e line 1.