What is the parameter specification for the public static void main method? code example
Example 1: main method java
public class Test {
static void main(String[] args){
System.out.println("Hello World");
}
}
Example 2: main class java
public static void main(String[] args) {}