Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trycf/2937bd20095ff7af49d980fb4487c02d to your computer and use it in GitHub Desktop.

Select an option

Save trycf/2937bd20095ff7af49d980fb4487c02d to your computer and use it in GitHub Desktop.
TryCF Gist
<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