Learning ColdFusion 8: OnMissingMethod() Event Handler

<!--- Create a Test instance. --->
<cfset objTest = CreateObject( "component", "Test" ) />
 
<!---
	Call a method that doesn't exist and pass in a set
	of named arguments.
--->
<cfset objTest.Blam(
	Too = "Sexy",
	How = "Good"
	) />

For Cut-and-Paste