Learning ColdFusion 8: Implicit Struct And Array Creation

<!---
	Even though the What's New In ColdFUsion 8 documentation
	says, that this is not possible, let's try to store an
	implicit struct into an array index.
--->
<cfset arrData = [] />
<cfset arrData[ 1 ] = { Movie = "Mixed Nuts", Time = "7:45 PM" } />
 
 
<cfdump
	var="#arrData#"
	label="Implicit Struct Creation w/ Array Set"
	/>

For Cut-and-Paste