Circular primes: Difference between revisions

Content added Content deleted
m (→‎Wren-cli: Minor tidy)
Line 3,127: Line 3,127:
===Wren-cli===
===Wren-cli===
Second part is very slow - over 37 minutes to find all four.
Second part is very slow - over 37 minutes to find all four.
<syntaxhighlight lang="ecmascript">import "/math" for Int
<syntaxhighlight lang="wren">import "./math" for Int
import "/big" for BigInt
import "./big" for BigInt
import "/str" for Str
import "./str" for Str
var circs = []
var circs = []
Line 3,204: Line 3,204:
</pre>
</pre>
<br>
<br>

===Embedded===
===Embedded===
{{libheader|Wren-gmp}}
{{libheader|Wren-gmp}}