mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
java parameters snippets GitOrigin-RevId: 94470268c299d0245347004104d23a4b655bb732
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");
|
|
}
|
|
} |