mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
12 lines
266 B
Java
12 lines
266 B
Java
class HintsDemo {
|
|
|
|
public static void print(String s1, String s2, String s3) {
|
|
Stream.of(s1, s2, s3)
|
|
.map(String::toUpperCase)
|
|
.forEach(System.out::println);
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
print("first","second","third");
|
|
}
|
|
} |