mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 10:39:51 +07:00
GitOrigin-RevId: 776d18524b6ec5c4eeec7f7bd71c01b768370aca
11 lines
211 B
Plaintext
11 lines
211 B
Plaintext
import java.util.Arrays;
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
System.out.println(use());
|
|
}
|
|
|
|
public static String use() {
|
|
return Arrays.toString(new Object[]{"1", "2", "3"});
|
|
}
|
|
} |