Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/79676071a16a4cd25efaed942fc0d83b to your computer and use it in GitHub Desktop.
Save trycf/79676071a16a4cd25efaed942fc0d83b to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
sayHiTo = function( name ){
return function(){
return "hi #name#!";
}
}
sayHiToBob = sayHiTo("Bob");
writeDump( sayHiToBob );
//writeDump( sayHiToBob() );
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment