ForkePractice

by siouxcitizen forked from FlashTest (diff: 2)
♥0 | Line 11 | Modified 2009-03-07 21:43:40 | MIT License
play

ActionScript3 source code

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

// forked from hacker_7daxapax's FlashTest
package {
    import flash.display.Sprite;
    import flash.text.TextField;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            var tf :TextField = new TextField;
            tf.text = "Hello World!\nThis is\nPractice of Fork!!";
            addChild( tf );
        }
    }
}