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