mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 04:20:56 +07:00
8 lines
213 B
Java
8 lines
213 B
Java
// "Replace 'var' with explicit type" "true-preview"
|
|
final class Example {
|
|
public static void main(String[] args) {
|
|
for (String s : args) {
|
|
System.out.println("s = " + s);
|
|
}
|
|
}
|
|
} |