Java simple “Hello World” Program

Here is a simple Java program that prints “Hello, World!” to the console:

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}

To run this program, you will need to have the Java Development Kit (JDK) installed on your machine. You can then use the javac command to compile the program and the java command to run it.

For example, to compile and run the program, you can use the following commands:

javac HelloWorld.java
java HelloWorld

This will output “Hello, World!” to the console.

This is just a simple example of a Java program. There are many more features and capabilities of the Java programming language that you can learn about and explore