Ads

PRINT HELLO WORD IN JAVA | JAVA PROGRAMMING | LEARN JAVA LANGUAGE

 public class HelloWorld {

    public static void main(String[] args) {

        //printing the message

        System.out.println("Hello World!");

    }

}

Post a Comment

0 Comments