Circular primes: Difference between revisions

Content added Content deleted
m (C++ - simplified code)
m (→‎{{header|Julia}}: remove comment)
Line 1,605: Line 1,605:
</pre>
</pre>
=={{header|Julia}}==
=={{header|Julia}}==
Note that the evalpoly function used in this program was added in Julia 1.4
<syntaxhighlight lang="julia">using Lazy, Primes
<syntaxhighlight lang="julia">using Lazy, Primes


Line 1,641: Line 1,640:
R(49081) is prime.
R(49081) is prime.
</pre>
</pre>

=={{header|Kotlin}}==
=={{header|Kotlin}}==
{{trans|C}}
{{trans|C}}