Wednesday, September 22, 2010

Hello World!

Since everything has to start somewhere. And, since, every developer has to start with the "Hello World" application. And, finally, because this is my first post in this blog. I've decided to create a very simple Hello-World Java Application:
/* Hello World in Java HelloWorld.java */
package com.blogspot.codinginverydaylife
public class HelloWorld{
    public static void main(String[] args){
        System.out.println("Hello World!");
    }
}

2 comments:

Noel Avlas said...

you can also use the String... modifier here for Java 1.5 or higher

public static void main(String... args) {}

dragonjet said...

"like"