Created
March 17, 2017 21:39
-
-
Save carlosmaniero/8c5b60d745b7a9913fd86bf297de7db3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.stream.Stream; | |
public class StreamForEach { | |
public static void main(String args[]) { | |
System.out.println("Fruit List:"); | |
Stream.of("Banana", "Apple", "Kiwi") | |
.forEach(System.out::println); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment