Learning ColdFusion 9: Implicit Struct And Array Usage

<!--- Create an empty girls array. --->
<cfset girls = [] />
 
<!---
	Add a girl to the end of the array by directly accessing
	one past the end of the array.
--->
<cfset girls[ arrayLen( girls ) + 1 ] = {
	name = "Kathleen",
	hair = "Blonde"
	} />
 
<!--- Output girls array. --->
<cfdump
	var="#girls#"
	label="Girls"
	/>

For Cut-and-Paste