Skip to content

Instantly share code, notes, and snippets.

@jmaciasluque
Created August 11, 2015 13:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jmaciasluque/1be9ca50e8305170f5d4 to your computer and use it in GitHub Desktop.
private void exercise5() {
new Thread(
() -> Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
.forEach(System.out::print))
.start();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment