Help for this page

Select Code to Download


  1. or download this
    >perl -MMath::BigInt -wle "$bi = Math::BigInt->new(10); $x = $bi; $y =
    + $bi; $x->binc(); print $x; print $y; print $bi;"
    11
    11
    11
    
  2. or download this
    >perl -MMath::BigInt -wle "$bi = Math::BigInt->new(10); $x = $bi; $y =
    + $bi; $x++; print $x; print $y; print $bi;"
    11
    10
    10