mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-26 14:29:20 +07:00
9 lines
187 B
Java
9 lines
187 B
Java
class Test {
|
|
public static void main(String[] args) {
|
|
String arg = newMethod(args[0]); //comment
|
|
}
|
|
|
|
private static String newMethod(String arg) {
|
|
return arg;
|
|
}
|
|
} |