forked from: flash on 2009-11-17

by mash forked from flash on 2009-11-17 (diff: 3)
trace works!
♥1 | Line 10 | Modified 2010-04-17 16:30:21 | MIT License
play

ActionScript3 source code

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

// trace works!

// forked from partlyhuman's flash on 2009-11-17
package {
	import com.actionscriptbible.Example;
	public class Test extends Example {
		public function Test() {
			trace("ABC");
			this.trace("DEF");
			super.trace("GHI");
		}
	}
}