flash on 2009-7-6

by hacker_7bnhd5gd
♥0 | Line 11 | Modified 2009-07-06 13:53:00 | MIT License
play

ActionScript3 source code

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

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

Forked