I was running a Java class that extends Applet implements Runnable and apparently the program can run, but there is no main method. I thought Java
extends Applet implements Runnable
main
Java Applets have an init method instead of main. It's:
public void init() {... }