/* * ============================================================================ * Program Name : Hello World * File Name : 001-Hello-World.java * Class Name : HelloWorld * * Description: * This program demonstrates the basic structure of a Java program. * It prints the message "Hello, World!" to the console using the * System.out.println() method. * * Objective: * - Understand the structure of a Java program. * - Learn the purpose of the main() method. * - Display output on the console. * * Author : Shaik Mahaboob Basha * Repository : 01-Core-Java * Folder : 08-Java-Programs * ============================================================================ */ public class HelloWorld { // The main() method is the entry point of every Java application. public static void main(String[] args) { // Print the message to the console. System.out.println("Hello, World!"); // Output: Hello, World! } }