mirror of
https://gitlab.com/arnekeller/kit-programmieren-ws1920-final2.git
synced 2024-11-09 18:30:38 +00:00
22 lines
374 B
Java
22 lines
374 B
Java
package edu.kit.informatik;
|
|
|
|
import edu.kit.informatik.ui.CommandLine;
|
|
|
|
public final class Main {
|
|
/**
|
|
* Utility class -> private constructor.
|
|
*/
|
|
private Main() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Program entry point.
|
|
*
|
|
* @param args command-line arguments
|
|
*/
|
|
public static void main(String[] args) {
|
|
CommandLine.startInteractive();
|
|
}
|
|
}
|