in reply to Re^2: converting large hex values
in thread converting large hex values

The simplest thing to try is (as suggested by bignum):
#!/fs/COTS/gnu/bin/AIX/perl use bignum;

Replies are listed 'Best First'.
Re^4: converting large hex values
by Spooky (Beadle) on Jul 30, 2009 at 14:04 UTC
    ..unfortunately, simply using the "use bignum" still didn't produce the precision that the "Mbigum=a,50" produced - I'll continue to try different options....
      -Mbigum=a,50 is actually use bignum a => 50;
        ..thanks - however, I put the "use bignum => 50" line of code before the "print hex("0xbe91cfb586466d02"),"\n";" statement and it still didn't give me the precision that the -Mbignum=a,50 gave me - I must be missing something - does the "print hex" have to be somehow part of the "use bignum" option? ..again, thanks for any insights...