Sunday, July 31, 2011

Introduction


package codesuffice.blogspot.com;
/**
 *
 * @author mangesh
 */
public class HelloWorld{
    HelloWorld(){
        System.out.println("Hello World !!");
        System.out.println("It is immensely pleasurable to write my first post for this blog. "
                + "The title 'Hello World !!' is an ode "
                + "to the first step in writing program for any language."
                + "Likewise I am writing my first post for this blog.");
    }


    public static void main(String[] args){
        HelloWorld helloWorld = new HelloWorld();
        helloWorld.Who_am_I('?');
        helloWorld.What_do_I_do('?');
        helloWorld.What_I_am_doing_here('?');
    }
    
    void Who_am_I(char question){
        System.out.println("I am a Software Engineer working in India.");
    }


    void What_do_I_do(char question){
        System.out.println("I do what a Software Engineer would do."
                + "Writing code and maintaining code.");
        //and if you don't know what a Software Engineer would do then 
        //probably you would not be here.
    }
    
    void What_I_am_doing_here(char question){
        System.out.println("Someday while sipping coffee "
                + "and relaxing after finding solution to a crude problem "
                + "a thought came to my mind. "
                + "What if I share such solutions with my fraternity of software minds?"
                + "I finished that cup of coffee with a plan to write blog "
                + "wherein I can share my experiences. "
                + "That's how I am here. "
                + "Beside this I like programming and "
                + "I would like to share some of my code which I have written.");
    }
}