Meissel–Mertens constant: Difference between revisions

→‎{{header|Wren}}: Added a note to preamble.
(Added Go)
(→‎{{header|Wren}}: Added a note to preamble.)
Line 272:
{{libheader|Wren-math}}
{{libheader|Wren-fmt}}
Wren's only native number type is a 64 bit float (15 or 16 digits accuracy) and it appears from the following results that, no matter how many primes we use, we're not going to be able to improve on 8 valid digits for M with this particular number type.
 
However, it's curious that the other examples, which are using (or appear to be using) a 64 bit float type, are able to get much closer to the correct answer. It's clearly something that needs to be investigated.
<syntaxhighlight lang="ecmascript">import "./math" for Int
import "./fmt" for Fmt
9,479

edits