Site icon WebArtDeveloper

How to Create Hello World Program and Execute it in Core Java

In this tutorial how to create Hello World Program and how to execute the program in Core Java  is shown.

Code:

HelloWorld.java

class HelloWorld
{
public static void main(String args[])
{
System.out.println(“Hello World!!”);
}
}

https://youtu.be/DdR_hWrl5Sw

Exit mobile version