Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/942b2cac6b2989bd495811e4a4a27082 to your computer and use it in GitHub Desktop.
Save trycf/942b2cac6b2989bd495811e4a4a27082 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
writedump(prorate(formula="ot15/173*&salary"));
Function prorate(formula,code){
Var local={};
Local.qgetcomp = getcomp(code);
Local.resword = listtoarray(formula,"()+/* ");
return local.resword;
};
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