forked from: The Children of DiscoDroid (Not competition entry)

by Gra.vydas.Kulvinskas forked from The Children of DiscoDroid (Not competition entry) (diff: 2665)
♥2 | Line 5 | Modified 2012-04-27 00:55:49 | MIT License | (replaced)
play

ActionScript3 source code

/**
 * Copyright Gra.vydas.Kulvinskas ( http://wonderfl.net/user/Gra.vydas.Kulvinskas )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/ohyg
 */

/**
 * The HelloWorldApp class implements an application that
 * simply prints "Hello World!" to standard output.
 */
class HelloWorldApp {
    public static void main(String[] args) {
        System.out.println("Hello World!"); // Display the string.
    }
}

Forked