How can you get rid of the main.java file and replace it with another .java file?
@Zavexeon You can also in the public static void main(String[] args) method of Main.java call your target class's main method:
MyClass.main(args);
How can you get rid of the main.java file and replace it with another file?
How can you get rid of the main.java file and replace it with another .java file?
@Zavexeon You can also in the public static void main(String[] args) method of Main.java call your target class's main method:
MyClass.main(args);