in reply to Re^2: Storing more decimal places in a variable
in thread Storing more decimal places in a variable
now just to nag my webserver to install it...
It comes with the standard distribution, so you probably already have it.
use Math::BigFloat; Math::BigFloat->accuracy(200); $x = Math::BigFloat->new(2); print $x->bsqrt();
|
|---|