mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
12 lines
260 B
Java
12 lines
260 B
Java
import static java.util.Arrays.toString;
|
|
|
|
class ImportDuty {
|
|
public static void main(String[] args) {
|
|
new ImportDuty().printArgs(1, 2, 3, 4, 5);
|
|
}
|
|
|
|
void printArgs(Object... args) {
|
|
System.out.println(<caret>toString(args));
|
|
}
|
|
}
|