Create a big integer : Math « System Functions « Perl
- Perl
- System Functions
- Math
Create a big integer
use Math::BigInt;
$bi1 = Math::BigInt->new('111111111111111111');
$bi2 = Math::BigInt->new('111111111111111112');
print "\$bi2 > \$bi1" if $bi2 > $bi1;
Related examples in the same category