in reply to Re^2: Big Int to hex with 5.6
in thread Big Int to hex with 5.6
Here it is :
gives#!perl use strict ; use warnings; use Math::BigInt ; my $bignum = Math::BigInt->new('1111111111111111111111111'); $bignum->as_hex(); print $bignum ;
Can't locate object method "as_hex" via package "Math::BigInt" (perhap +s you forgot to load "Math::BigInt"?) at t.pl line 6.
|
|---|