flash on 2014-2-17

by Hahlu
♥0 | Line 11 | Modified 2014-02-17 13:35:54 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    import flash.text.TextField;
    public class HelloWorld extends Sprite {
        public function HelloWorld() {
            var tf :TextField = new TextField;
            tf.text = "Hello, hello world!";
            addChild( tf );
        }
    }
}