flash on 2012-5-13

by Highly
♥0 | Line 11 | Modified 2012-05-13 12:33:21 | 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/2JdU
 */

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            //if divisible by 3, fizz
            //if containing 3 as a digit, fizz
            //if divisible by 5 buzz
            //if containing 5 buzz
            var a:int = 10;
            var b:int = 100;
            var c:int = a/b;
            trace(c);
        }
    }
}