Entry Point Demonstration@ Hello World.
Main method defined in any class is treated as a code execution entry point to entire java app.
PFB example for the reference:
class EntryPoint {
public static void main(String [] args) {
System.out.println(“Hello! Welcome to the JAVA world with entry point execution”);
}
}
Recent Comments