flash on 2013-9-11

by Highly
♥0 | Line 13 | Modified 2013-09-11 12:36:48 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            for(var i:int = 0;i<1000;++i){
                trace(i);
            }

        }
        public function shit(x:int):Number {
            return x/5;
        }

    }
}