Skip to content

Instantly share code, notes, and snippets.

@2m
Last active August 29, 2015 14:05
Show Gist options
  • Save 2m/4d0dff72ca14a0c3e8db to your computer and use it in GitHub Desktop.
Save 2m/4d0dff72ca14a0c3e8db to your computer and use it in GitHub Desktop.
scala> Stream.from(3).takeWhile(_ => new Random().nextDouble() > 0.1).force
res9: scala.collection.immutable.Stream[Int] = Stream(3, 4, 5, 6, 7, 8, 9)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment