Learning ColdFusion 9: Implicit Struct And Array Usage

<!---
	Creating an implicit array of implicit structs is basically
	the same in ColdFusion 8 and ColdFusion 9.
--->
<cfset girls = [
	{
		name = "Tricia",
		hair = "Brown"
	},
	{
		name = "Joanna",
		hair = "Dark Brown"
	}
	] />
 
<!--- Output the array. --->
<cfdump
	var="#girls#"
	label="Girls"
	/>

For Cut-and-Paste