Help for this page

Select Code to Download


  1. or download this
    my $obj = new My::Custom::Object;
    use bigint;
    my $mult = 2**100 *  $obj;
    
  2. or download this
    package Math::BigInt;
    use overload '*' =>
    ...
             $_[0]->bmult($_[1]);
        }
    }