ff[2]: flash on 2010-6-2

by makc3d forked from forked from: flash on 2010-6-2 (diff: 17)
Please explain, someone?
♥0 | Line 11 | Modified 2012-04-27 00:56:20 | MIT License
play

ActionScript3 source code

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

// forked from xxxYukihiroxxx's forked from: flash on 2010-6-2
// forked from coppieee's flash on 2010-6-2
package {
    import com.actionscriptbible.Example;
    public class FlashTest extends Example {
        public function FlashTest() {
			
			// XMLの属性を参照している。これはこれで問題あるな。w
			trace(@[1,2,3].length);		// output:"1"

			// ok, 1 above is this:
			trace(Object.length);

			trace(@["whatever"].toString ());
			trace(@[null].parent);

        }
    }
}