The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package org.maltparser;


/**
 * Application class in the MaltParser library.
 *
 * @author Johan Hall
 * @since 1.0
**/
public class Malt {
	/**
	 * The starting point of MaltParser
	 * 
	 * @param args command-line arguments
	 */
	public static void main(String[] args) {
		MaltConsoleEngine engine = new MaltConsoleEngine();
		engine.startEngine(args);
	}
}