Skip to content

Instantly share code, notes, and snippets.

@eyelash
Created February 18, 2018 19:02
Show Gist options
  • Select an option

  • Save eyelash/ace7e3422c9f5b31ce4812a7bb7953cf to your computer and use it in GitHub Desktop.

Select an option

Save eyelash/ace7e3422c9f5b31ce4812a7bb7953cf to your computer and use it in GitHub Desktop.
sieve (x:xs) = x : sieve (filter (\y -> mod y x /= 0) xs)
primes = sieve [2..]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment