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 ordered arguments.
--->
<cfset objTest.Blam(
	"Foo",
	"Bar"
	) />

For Cut-and-Paste