how to run hello world program in java code example
Example 1: hello world in java
public static void main(String[] args){
System.out.println("Hello World");
}
Example 2: java code to print hello world
class Simple{
public static void main(String args[]){
System.out.println("Hello Java");
}
}