flash on 2012-11-30

by peace96beats
♥0 | Line 11 | Modified 2012-11-30 12:44:42 | MIT License
play

ActionScript3 source code

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

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, world!";
           addChild( tf );
       }
   }
}