Files
2022-10-06 15:55:11 +00:00

13 lines
289 B
Java

// "Make 'x' effectively final using stream API" "true-preview"
import java.util.*;
class Test {
public static void main(String[] args) {
int x = 0;
for (String arg : args) {
if (!arg.isEmpty())
x++;
}
Runnable r = () -> System.out.println(<caret>x);
}
}