11 lines
229 B
Java
11 lines
229 B
Java
package fr.packageviewer;
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
// send the command line arguments to the parser
|
|
ArgParse.parseArguments(args);
|
|
System.out.println(ArgParse.getDistribution());
|
|
}
|
|
}
|