Explore Library
Code QuizBeginner

Main Method Signature

Spot why this Java program won't launch from the command line.

Codejava
public class Hello {
    public void main(String[] args) {
        System.out.println("Hello");
    }
}

Why does the JVM fail to run this program's main method?