File size: 381 Bytes
6f3ebfa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
	}
}