how to print hello world java

48

how to print hello world in java -

public class HelloWorld{
	public  static void main(String[] args){
    System.out.println("Hello world");
    } 
}

Comments

Submit
0 Comments