Print hello world java

Print hello world java

Below is first java program which prints hello world on console.

package com.javahonk.helloworld;

public class HelloWorldJava {

    public static void main(String[] args) {
    
    System.out.println("Hello world java!!!");

    }

}

 

Output:

Print hello world java

Leave a Reply

Your email address will not be published. Required fields are marked *