Certainly! Here is a simple Java program that prints "Hello, World!" to the console:
```java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
```
### Steps to Run the Code:
1. **Install Java Development Kit (JDK)**: Make sure you have the JDK installed on your computer. You can download it from the [official Oracle


