Skip to content

Instantly share code, notes, and snippets.

@sphynx
Created February 23, 2011 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sphynx/841213 to your computer and use it in GitHub Desktop.
Save sphynx/841213 to your computer and use it in GitHub Desktop.
Primes test
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