Skip to content

Instantly share code, notes, and snippets.

@NikitaMelnikov
Created May 5, 2016 10:49
Show Gist options
  • Save NikitaMelnikov/e10aa5b0e4e89db228e88d55adb31bb7 to your computer and use it in GitHub Desktop.
Save NikitaMelnikov/e10aa5b0e4e89db228e88d55adb31bb7 to your computer and use it in GitHub Desktop.
def primes(s: Stream[Int]): Stream[Int] = Stream.cons(s.head, primes(s.tail filter {_ % s.head != 0}))
primes(Stream.from(2)) take 10 foreach println
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment