Using XML Style Name Space Attributes In ColdFusion

<!---
	Define a standard ColdFusion user defined function but
	add some "kinky" name space attributes to the declaration.
--->
<cffunction
	name="Test"
	access="public"
	returntype="string"
	output="false"
	hint="Returns a string"
 
	<!--- Add custon attributes for kinky name space. --->
	kinky:author="Ben Nadel"
	kinky:datecreated="2007/01/30"
	>
 
	<cfreturn "This is a test for XML style attributes" />
</cffunction>

For Cut-and-Paste