I was wondering in the program like Karel the Robot. It does not use main(), but instead instead it used run() method.
import stanford.karel.Karel;
public class CollectNewspaperKarel extends Karel {
public void run() {
move();
}
}
What is going on?