mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: d83baca2662fb7c124c7bec51bf53d78dc4fb303
8 lines
181 B
Java
8 lines
181 B
Java
import java.util.Arrays;
|
|
|
|
class A {
|
|
public void test() {
|
|
String[] strings = {"scnd", "third"};
|
|
System.out.println(Arrays.asList("frst", strings, "4th"));
|
|
}
|
|
} |