Newer
Older
java-lab / src / main / java / se / progic / javalab / App.java
@Marcus Bengtsson Marcus Bengtsson on 6 Nov 291 bytes Session 1 cleanup
package se.progic.javalab;

import picocli.CommandLine;

public class App {

    public static void main(String... args) {

        final CommandLine commandLine = new CommandLine(new Cli());
        final int returnCode = commandLine.execute(args);

        System.exit(returnCode);
    }
}