Skip to content

Instantly share code, notes, and snippets.

@matthesrieke
Last active April 21, 2017 09:09
Show Gist options
  • Save matthesrieke/a40760958281d96d4bde0a5b723deea3 to your computer and use it in GitHub Desktop.
Save matthesrieke/a40760958281d96d4bde0a5b723deea3 to your computer and use it in GitHub Desktop.
Java8Test.java
import java.util.Arrays;
import java.util.List;
public class Java8Test {
public static void main(String[] args) {
List<String> testList = Arrays.asList(new String[] {"a", "b", "c"});
testList.stream().forEach(s -> {
System.out.print(s);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment