forked from: Quine

by 9re forked from Quine (diff: 21)
♥0 | Line 15 | Modified 2011-01-14 14:38:56 | MIT License
play

ActionScript3 source code

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

package{
    import flash.text.TextField;
    import flash.display.Sprite;
    public class Q extends Sprite {
        [Embed("Q.as", mimeType="application/octet-stream")]
        private var F:Class;
        public function Q() {
            with (addChild(new TextField)) {
                width = height = 465;
                with (new F)
                    text = readUTFBytes(length);
            }
        }
    }
}