All Downloads are FREE. Search and download functionalities are using the official Maven repository.

convex.main.Main Maven / Gradle / Ivy

Go to download

Module intented primarily to implement integration testing across different Convex artifacts

The newest version!
package convex.main;

import convex.gui.utils.Terminal;

public class Main {
	
	public static void main(String... args) {
		boolean terminal=Terminal.checkIfTerminal();
		if (terminal) {
			convex.cli.Main.main(args);
		} else {
			convex.gui.MainGUI.main(args);
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy