Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

code-check/cli-template-java

Repository files navigation

Command line application template for Java

Implement CLI application by editing App.java You may add new files to keep your code clean, if it is allowed in your challenge.

How to get input parameters

You can get arguments as args in main method.

public static void main(String[] args) {
  // code to run
}

How to output result

You can use Sytem.out.println method to output you result in stdout.

  System.out.println(args);

Install External Libraries

If you want to use external libraries, do the following:

  • Add dependencies settings in pom.xml

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published