Variable size/Set: Difference between revisions

m
m (forgot the "3.")
Line 403:
mpz (integer) variables automatically grow as needed but can optionally be initialised with a minimum bitcount to avoid later reallocations.<br>
mpfr (floating point) variables require the precision to be explicitly specified in binary bits, for example if you want PI to 1000 decimal places:
{{libheader|mpfr}}
<lang Phix>include mpfr.e -- requires 0.8.0+
string nines = repeat('9',1001) -- +1 for the "3."
7,806

edits