flash on 2012-1-4

by leocavalcante
♥0 | Line 14 | Modified 2012-01-04 07:37:38 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var o : * = new Test();
            o = 'hi';
            trace(o);
        }
    }
}

class Test {
    public function Test() {
        
    }

}