mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
316 B
Java
13 lines
316 B
Java
class Temp {
|
|
public static void main(String... args) {
|
|
if (args.length > 0)
|
|
check<caret>Args(args);
|
|
else
|
|
System.out.println("help");
|
|
}
|
|
|
|
private static void checkArgs(String[] args) {
|
|
if (args[0].equals("foo"))
|
|
System.out.println("bar");
|
|
}
|
|
} |