forked from JavaTX/JavaCompilerCore
11 lines
231 B
Java
11 lines
231 B
Java
import de.dhbwstuttgart.core.ConsoleInterface;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) throws IOException, ClassNotFoundException {
|
|
ConsoleInterface.main(args);
|
|
}
|
|
}
|