Hello world using java

Creating Compile Run *code * public class First { public static void main(String[] args) { System.out.println(“Hello, World”); } } save the file First.java after open terminal : compiler code: javac First.java now creating the class file *Run code: * java First now display the hello world

Mar 26, 2025 - 09:13
 0
Hello world using java

Creating
Compile
Run

*code *
public class First
{
public static void main(String[] args)
{
System.out.println(“Hello, World”);
}
}

save the file First.java
after open terminal :
compiler code: javac First.java
now creating the class file
*Run code: * java First
now display the hello world