Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I was trying to do0x000102030405060708090a0b0c0d0e0f;
But the above code does not work. I get an error message saying integer over flow.#!/usr/bin/perl use strict; use warnings; my $x_dec = Math::BigInt->from_hex("0x000102030405060708090a0b0c0d0e0f +"); print $x,"\n";
|
|---|