Mode:
Duration:
1
2
3
4
5
6
7
8
import java.util.*;
public class LambdaExample {
public static void main(String[] args) {
List<String> fruits = Arrays.asList("Apple", "Banana", "Cherry");
fruits.forEach(fruit -> System.out.println(fruit));
}
}Coding works best on desktop or with an external keyboard.