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-11-17

trace works!
Get Adobe Flash player
by mash 17 Apr 2010
/**
 * 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");
		}
	}
}