mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
10 lines
213 B
Java
10 lines
213 B
Java
class Test {
|
|
public static void main(String[] args, int i) {
|
|
newMethod("hi");
|
|
newMethod("world, " + args[i]);
|
|
}
|
|
|
|
private static void newMethod(String s) {
|
|
System.out.println(s);
|
|
}
|
|
} |