Skip to content

Instantly share code, notes, and snippets.

@bdw429s
Created January 2, 2014 17:13
Show Gist options
  • Save bdw429s/8222569 to your computer and use it in GitHub Desktop.
Save bdw429s/8222569 to your computer and use it in GitHub Desktop.
This works as it is using an < (less 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