0% found this document useful (0 votes)
15 views

Class HelloWorldJAVA

This Java program contains a single class called HelloWorld with a main method that prints the text "Hello World" to the console using System.out.println. The main method has no arguments and does not return anything.

Uploaded by

abhi kr
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

Class HelloWorldJAVA

This Java program contains a single class called HelloWorld with a main method that prints the text "Hello World" to the console using System.out.println. The main method has no arguments and does not return anything.

Uploaded by

abhi kr
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

HELLO WORLD PROGRAM IN JAVA

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

You might also like