Archive for the ‘concurrent’ Tag

How do you write the traditional Hello World program

Wednesday, January 15th, 2014

in Java? Like this!

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

Learn Java here.