Learning ColdFusion 8: Implicit Struct And Array Creation

<!---
	Now, let's recreate the date, except this time, we
	are going to combine the implicit struct creation
	with the implicit array creation.
--->
<cfset objDate = {
	Pickup = "7:45 PM",
	Dinner = "Outback Steak House",
	Movie = "28 Weeks Later",
	MovieTimes = {
		Time1 = "7:00 PM",
		Time2 = "9:15 PM",
		Time3 = "11:14 PM"
		},
	Dessert = "Cafe Lalo"
	} />

For Cut-and-Paste