Learning ColdFusion 8: Implicit Struct And Array Creation

<!---
	Let's recreate the date plan using ColdFusion 8's
	new implicit struct creation, but this time, we
	are going to define one of the keys twice to see
	how it reacts.
--->
<cfset objDate = {
	Pickup = "7:45 PM",
	Dinner = "Outback Steak House",
	Dessert = "Cafe Lalo",
	Dinner = "Ruby Fu's"
	} />
 
<!--- Dump out the data to see if it worked. --->
<cfdump
	var="#objDate#"
	label="Implicit Struct Creation Test"
	/>

For Cut-and-Paste