say 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: first line of java code
public class Main {
public static void main(String[] args) {
System.out.println("This will be printed");
}
}