14 lines
268 B
Java
14 lines
268 B
Java
public class Main {
|
|
public static void main(String[] args) {
|
|
Fenetre fenetre;
|
|
try {
|
|
if (args[0].equals("diviser")) {
|
|
fenetre = new Fenetre(false);
|
|
}
|
|
else {
|
|
fenetre = new Fenetre(true);
|
|
}
|
|
} catch (ArrayIndexOutOfBoundsException e) {
|
|
}
|
|
}
|
|
} |