Skip to content

Instantly share code, notes, and snippets.

@yassu
Created February 8, 2014 12:37
Show Gist options
  • Save yassu/8883102 to your computer and use it in GitHub Desktop.
Save yassu/8883102 to your computer and use it in GitHub Desktop.
primes_s xs = (head xs) : primes_s (filter (not_dividable (head xs)) xs)
primes = primes_s [2..]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment