4 lines
128 B
Text
4 lines
128 B
Text
<cfset myHash = structNew()>
|
|
<cfset myHash.key1 = "foo">
|
|
<cfset myHash["key2"] = "bar">
|
|
<cfset myHash.put("key3","java-style")>
|