Created
July 11, 2025 17:12
-
-
Save trycf/d1fa5d9127a86ac487b65db537e160d8 to your computer and use it in GitHub Desktop.
TryCF Gist
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> | |
numbers = [ | |
one = "tahi", | |
two = "rua", | |
three = "toru", | |
four = "wha" | |
] | |
cfwddx(action="cfml2wddx", output="asWddx", input=numbers) | |
cfwddx(action="wddx2cfml", output="asStruct", input=asWddx) | |
writeDump([ | |
original = numbers, | |
asWddx = asWddx, | |
asStruct = asstruct | |
]) | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment