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!!”);
}
}
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!!”);
}
}