Given the following class, I am trying to find program's main entry point:
public class Demo {
public static void main(String[] args) {
System.out.println("Hello World!");
}
public static void main(String a, String b){
// ...
}
public void main(int a){
// ...
}
}
Any help appreciated, thanks.