Learning ColdFusion 9: Implicit Struct And Array Usage

<!---
	Using implicit values in methods applies both built-in
	ColdFusion functions as well as user defined methods.
--->
<cfset girl = {
	name = "Molly",
	hair = "Brown"
	} />
 
<!--- Append new data to girl object. --->
<cfset structAppend(
	girl,
	{
		smile = "Sweet",
		build = "Petite"
	}
	) />
 
<!--- Output the updated struct. --->
<cfdump
	var="#girl#"
	label="Girl (via Method)"
	/>

For Cut-and-Paste