Skip to content

Instantly share code, notes, and snippets.

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 trycf/2384551b78c06f4fed14ffb46c129e58 to your computer and use it in GitHub Desktop.
Save trycf/2384551b78c06f4fed14ffb46c129e58 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfdump var=#server.lucee.version#>
<cfset v = 3>
<cfloop from="1" to="4" index="c">
<cfif c is 2>
aborted
<cfabort>
<cfelse>
<cfset v = v + 1>
</cfif>
<cfoutput>c: #c#, v: #v#<br></cfoutput>
</cfloop>
<hr>
<cfoutput>c: #c#, v: #v#</cfoutput>
<br>
not aborted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment