forked from: flash on 2009-11-27

by takezone forked from flash on 2009-11-27 (diff: 8)
♥0 | Line 13 | Modified 2010-01-08 01:08:42 | MIT License
play

ActionScript3 source code

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

// forked from hacker_kuukuu's flash on 2009-11-27
package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            graphics.lineStyle(5,0x000000);
            for(var x:int =0;x<300;x=x+30){
            		for(var y:int =20;y<400;y=y+15){
            graphics.lineTo(x,y);
            		}
            }
        }
    }
}
//my first fork just tested