Program.in

By Santosh Wadghule

Archive for August 9th, 2007

Simple Java Program

without comments

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

1] public is for that everyone can access it.
2] MyFirstApp is the name of class.
3] String[] for arguments to the method. This method must be given an array of Strings,and the array will be called ‘args’.

Written by Santosh Wadghule

August 9, 2007 at 5:57 pm

Posted in Java, Uncategorized

Hello world!

without comments

Hello Friends,
I am Santosh Wadghule from T.Y.Bsc(Comp Sci) in India.
I like to compose code & to explore technology.

Written by Santosh Wadghule

August 9, 2007 at 3:23 pm

Posted in Uncategorized