Learning ColdFusion 8: Implicit Struct And Array Creation

<!---
	As the documentation states for this beta, we cannot
	nest implicit structs / arrays without an intermediary
	variable. However, what happens if we use an intermediar
	function call to create our structure? Let's try this
	again with a combination of ColdFusion 8's new implicit
	struct creation and our old-school StructCreate() UDF.
--->
<cfset objDate = {
	Pickup = "7:45 PM",
	Dinner = "Outback Steak House",
	Movie = StructCreate(
		Name = "28 Weeks Later",
		Time = "7:45 PM"
		),
	Dessert = "Cafe Lalo"
	} />
 
 
<!--- Dump out the data to see if it worked. --->
<cfdump
	var="#objDate#"
	label="Implicit Struct Creation / UDF Test"
	/>

For Cut-and-Paste