Skip to content

Instantly share code, notes, and snippets.

@jmaciasluque
Created August 11, 2015 13:38
  • 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/ed935d07498133079228 to your computer and use it in GitHub Desktop.
private void exercise1() {
StringBuilder result = new StringBuilder();
Arrays.asList("alpha", "bravo", "charlie", "delta", "echo", "foxtrot")
.forEach(word -> result.append(word.charAt(0)));
System.out.println(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment