Monday, April 22, 2013

basic code (for those who freshly started with java)

//Basic code:
class First
{
        public static void main(String args[])//main function
        {
                System.out.print("Hello");//outputs the word 'Hello'
        }
}

No comments:

Post a Comment