forked from: The Children of DiscoDroid (Not competition entry)
forked from The Children of DiscoDroid (Not competition entry) (diff: 2665)
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.
}
}
