Learning ColdFusion 8: Implicit Struct And Array Creation

<!---
	Create the date plan using ColdFusion 8's
	new implicit struct creation.
--->
<cfset objDate = {
	Pickup = "7:45 PM",
	Dinner = "Outback Steak House",
	Dessert = "Cafe Lalo"
	} />
 
<!--- Dump out the data to see if it worked. --->
<cfdump
	var="#objDate#"
	label="Implicit Struct Creation Test"
	/>
 
 
<!---
	Create an array of movie times using
	ColdFusion 8's new implicit array creation.
--->
<cfset arrMovieTimes = [
	"7:00 PM",
	"9:15 PM",
	"11:14 PM"
	] />
 
<!--- Dump out the data to see if it worked. --->
<cfdump
	var="#arrMovieTimes#"
	label="Implicit Array Creation Test"
	/>

For Cut-and-Paste