Created
March 29, 2019 10:04
-
-
Save aliaspooryorik/a9e05a2f7f9c1cd0a7b016d7d82e1d32 to your computer and use it in GitHub Desktop.
orderedstructsyntax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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