0% found this document useful (0 votes)
51 views1 page

1 First-Project PDF

This Java program contains a simple "Hello World" application within the first package and first class. The main method prints the string "This is hello world" to the console when ran, providing a basic demonstration of how to output text from a Java program.

Uploaded by

BC Amratha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
51 views1 page

1 First-Project PDF

This Java program contains a simple "Hello World" application within the first package and first class. The main method prints the string "This is hello world" to the console when ran, providing a basic demonstration of how to output text from a Java program.

Uploaded by

BC Amratha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

first.

java

1 package firstProject;
2
3 public class first {
4 public static void main(String []args)
5 {
6 System.out.println("This is hello world");
7 }
8}
9

Page 1

You might also like