In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

forked from: flash on 2009-8-7

Get Adobe Flash player
by mrdoob 31 Aug 2009
    Embed
/**
 * Copyright mrdoob ( http://wonderfl.net/user/mrdoob )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/8IwC
 */

// forked from neave's flash on 2009-8-7
package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite
    {
        public function FlashTest()
        {
            graphics.lineStyle(0, 0);
            graphics.lineTo(100, 100);
            
            // continuing neave's master piece
            graphics.lineTo(150, 200);
        }
    }
}