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