<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
	creationComplete="initApp()">

	<mx:Script>
		<![CDATA[
			private function initApp():void
			{
				var myVar:Number=10;
				trace("This is a trace statement");
			}
			private function clickHandler():void
			{
				var newVar:Number=12.34;
			}
		]]>
	</mx:Script>

	<mx:Label text="Something has displayed"/>

	<mx:Button label="Try the debugger" click="clickHandler()"/>
	
</mx:Application>
