Welcome to my first Java program! 🚀 This project is created to understand the basics of Java programming.
This is a simple Java program that prints a message on the screen.
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}Follow these steps:
-
Install Java (JDK)
-
Save the file as
Main.java -
Open terminal / command prompt
-
Compile the program:
javac Main.java -
Run the program:
java Main
- Basic Java syntax
- How to write a main method
- How to print output
Hello, World!
Your Name
This is a beginner-level project. More features will be added soon!