Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/e08afcfde904dd242429fda1517d5134 to your computer and use it in GitHub Desktop.
Save trycf/e08afcfde904dd242429fda1517d5134 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
writedump(prorate("a"));
Function prorate(arg){
Var local={};
Local.qgetcomp = getcomp(arg);
return true;
};
function getcomp(arg){
Var local ={};
Local.ret ={
"Code" :"al"
};
Return local.ret;
};
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment