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

Hello

This Java program contains a main method that prints the text "Hello world" to the console. It defines a Hello class with a static main method that takes an array of String arguments and uses System.out.println to display the message.

Uploaded by

_piAh_
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

Hello

This Java program contains a main method that prints the text "Hello world" to the console. It defines a Hello class with a static main method that takes an array of String arguments and uses System.out.println to display the message.

Uploaded by

_piAh_
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, TXT or read online on Scribd
You are on page 1/ 1

public class Hello {

public static void main( String[] args ){

System.out.println("Hello world");

}
}

You might also like