in reply to use with lib

Hi vetrivel,

use Math::BigInt lib => "GMP";
This will attempt to use Math::BigInt::GMP, and if Math::BigInt::GMP cannot be found, Math::BigInt will be used instead.

use Math::BigInt::GMP;
This will attempt to use Math::BigInt::GMP, and if Math::BigInt::GMP cannot be found, the program will abort.

In both cases appropriate messages will be output if Math::BigInt::GMP was not found.

Cheers,
Rob

Replies are listed 'Best First'.
Re^2: use with lib
by vetrivel (Sexton) on Jun 14, 2009 at 10:01 UTC

    Thanks for your contribution