René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

the main() method [JAVA]

The main method is where a java program starts. It must meet the following criterias:
So, the arguably simplest java programm would be:
class B {
  public static void main(String args[]) {
  }
}