http://qs1969.pair.com?node_id=184096


in reply to Re: Big Numbers
in thread Big Numbers

Thanks for the Math::BigInt link. I found that I was using an older version of the Math::BigInt package. I was using the autocreated constant feature where any constant in the current scope is converted into a BigInt. I had success with integers, but not hex values. The documentation now claims hex constants will be converted as well. All I have to do (according to the documentation) is:
use Math::BigInt qw/:constant/;