Skip to content

Instantly share code, notes, and snippets.

@cybersonic
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save cybersonic/9eabaf291c4363093c08 to your computer and use it in GitHub Desktop.

Select an option

Save cybersonic/9eabaf291c4363093c08 to your computer and use it in GitHub Desktop.
Demo code suggestion
<cfif false>
This will never run
<cfelse>
This will always run
</cfif>
or
<cfscript>
if(false){
echo('This will never run')
}
else{
echo('This will always run')
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment