Skip to content

Instantly share code, notes, and snippets.

@zarinfam
Created July 3, 2019 14:33
Show Gist options
  • Save zarinfam/e086865ccf71bc6a35cd3ff592dc1848 to your computer and use it in GitHub Desktop.
Save zarinfam/e086865ccf71bc6a35cd3ff592dc1848 to your computer and use it in GitHub Desktop.
Created with Copy to Gist
Stream.iterate("*", s -> s + "*")
.takeWhile(s -> s.length() < 7)
.forEach(System.out::println)
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment