Learning ColdFusion 8: Implicit Struct And Array Creation

<!---
	We know that we can use the implicit struct
	creation directly, but can we evaluate it as
	if it were a variable? Let's create a string
	that will represent our implicit struct.
--->
<cfset strStructure = "{ Name = 'Must Love Dogs', Time = '7:30 PM' }" />
 
<!---
	Now, let's try to evaluate the implicit structure
	creationg and save it in to the movie variable.
--->
<cfset objMovie = Evaluate( strStructure ) />
 
<!--- Dump out the data to see if it worked. --->
<cfdump
	var="#objDate#"
	label="Implicit Struct Evaluation Test"
	/>

For Cut-and-Paste