Created
December 24, 2025 11:30
-
-
Save trycf/2937bd20095ff7af49d980fb4487c02d 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> | |
| xx(); | |
| xx({}); | |
| xx({f=33}); | |
| function xx (struct decode={}) { | |
| var defaults = {f=12,g='hola'}; | |
| defaults.append(arguments.decode) | |
| writeDump(defaults); | |
| yy(deck = defaults.append(arguments.decode); | |
| writeDump(arguments); | |
| } | |
| function yy (struct dekk={}) { | |
| } | |
| </cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment