Last active
August 29, 2015 14:15
-
-
Save cybersonic/9eabaf291c4363093c08 to your computer and use it in GitHub Desktop.
Demo code suggestion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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