Created
February 23, 2011 21:22
-
-
Save sphynx/841213 to your computer and use it in GitHub Desktop.
Primes test
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
primes :: [Integer] | |
primes = sieve [2..] | |
where | |
sieve (p:xs) = p : sieve [x | x <- xs, x `mod` p > 0] | |
main = print $ primes !! 10000 | |
-- compile with `ghc --make primes.hs`, then run run run :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment