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/737f5d1f98263bf347faab859a455e95 to your computer and use it in GitHub Desktop.
Save trycf/737f5d1f98263bf347faab859a455e95 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
loop from="10" to="1" index="i" step="-1" {
echo(i & "<br>");
}
</cfscript>
<br><br>
<cfloop from="10" to="1" step="-1" index="i">
<cfoutput>
#i#<br>
</cfoutput>
</cfloop>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment