Monday, August 1, 2011

Hello World !

Hello World, I really intrigued with this software programming terms. Why ? because this term is a simple software programming that always be learned by programmer when starting to learn software programming. You could say that Hello World is such a introduction program.

Hello World
At the beginning when learning software programming perhaps we have not been able to go directly to a complicated thing, so in the Hello World, we only learn to display the results of program execution on the screen, in this case "Hello World" words. Here are examples of the syntax (in Java):


public class Hello
{

// My First Java Program
public static void main(String[] args){

//Displaying String Hello World on the screen
System.out.println(“Hello World”);

}

I hope this post can increase your software programming insight. Thanks

0 comments:

Post a Comment

If you have something to say about this post, please fell free to write it in the comment form below. We will reply to all comments as soon as possible. Thanks ...