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:
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: