Is there any "short" syntax for creating a struct in ColdFusion? I'd like to replace this verbose code:
<cfscript>
ref = StructNew();
ref.Template = "Label";
ref.Language = "en";
stcML = GetPrompts(ref);
</cfscript>
with something more like a JavaScript object:
<cfscript>
stcML = GetPrompts({ Template: "Label", Language: "en" });
</cfscript>
Is there anything like this?