summaryrefslogtreecommitdiff
blob: 21aebcb57a86e1a7266eb72eb4cc3a105070fb97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class Main
{
   private static Parameters PARAMETERS;

   public static void main (final String... args)
   {
      PARAMETERS = new Parameters(args);

      if (!PARAMETERS.are_valid())
      {
         return;
      }
   }
}