Help for this page

Select Code to Download


  1. or download this
    use Math::GMP;
    $orig = Math::GMP->new(5);
    $copy = $orig;
    $copy += 4; # $copy is 9
                # $orig is 4
    
  2. or download this
    use Math::GMP;
    $orig = Math::GMP->new(5);
    $copy = $orig;
    $copy->add_ui_gmp(4); # $copy is 9
                          # $orig is 9