Created
March 1, 2012 14:51
-
-
Save zhuomingliang/1950259 to your computer and use it in GitHub Desktop.
primes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
constant @primes = 2, 3, -> $p { ($p+2, $p+4 ... -> $n { $n %% none @primes ... * >= sqrt $n })[*-1] } ... *; say @primes[^20]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment