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

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