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 = [
		"7:00 PM",
		"9:15 PM",
		"11:14 PM"
		],
	Dessert = "Cafe Lalo"
	} />

For Cut-and-Paste