in reply to Converting Java to Perl (BigInteger)

For those new to this discussion, the above post is a follow-on from Converting Java to Perl (MD5). The question can be summed up as: how do I treat a hexadecimal string as a big two's complement integer?

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re: Converting Java to Perl (BigInteger)