Skip to content

Instantly share code, notes, and snippets.

@aliaspooryorik
Created March 29, 2019 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aliaspooryorik/a9e05a2f7f9c1cd0a7b016d7d82e1d32 to your computer and use it in GitHub Desktop.
Save aliaspooryorik/a9e05a2f7f9c1cd0a7b016d7d82e1d32 to your computer and use it in GitHub Desktop.
orderedstructsyntax
<cfscript>
x = [
"a":1,
"z":2,
"b":3
];
y = {
"a":1,
"z":2,
"b":3
};
writeDump(x);
writeDump(y);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment