Skip to content

Instantly share code, notes, and snippets.

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 trycf/f04769da184db95bf88edcb6e86a7c2a to your computer and use it in GitHub Desktop.
Save trycf/f04769da184db95bf88edcb6e86a7c2a to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
application action='update' nullSupport=true;
function proxy(
arg1,
arg2
){
return udf( argumentCollection = arguments );
}
function udf(
arg1='default 1',
arg2='default 2'
){
return arguments;
}
writedump( proxy(arg1=456) )
writedump( proxy(456) )
application action='update' nullSupport=false;
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment