mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
18 lines
359 B
Java
18 lines
359 B
Java
public class Test {
|
|
public static void main(String[] args, int i) {
|
|
if (args[i] != null) {
|
|
extracted(args[i]);
|
|
}
|
|
}
|
|
|
|
private static void extracted(String args) {
|
|
System.out.println(args);
|
|
System.out.println();
|
|
}
|
|
|
|
void test(String[] args, int i){
|
|
if (args[i] != null) {
|
|
extracted(args[i]);
|
|
}
|
|
}
|
|
} |