Skip to content

Instantly share code, notes, and snippets.

@bdw429s
Created January 2, 2014 17:14
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 bdw429s/8222581 to your computer and use it in GitHub Desktop.
Save bdw429s/8222581 to your computer and use it in GitHub Desktop.
This fails as it uses a > (greater than)
<cfoutput>
#testerton(
function(){
if(1 > 2){
return true
}
return false;
})#
</cfoutput>
<cfscript>
function testerton(clos){
if(clos()) {
writeDump(arguments); abort;
}
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment