Created
July 9, 2025 06:43
-
-
Save trycf/25b83ea166e28657ab14f3276d38cd9b to your computer and use it in GitHub Desktop.
TryCF Gist
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
<!---<cfoutput> | |
<cfset matrix = ArrayNew(2)> | |
<cfset num = 0> | |
<ul> | |
<cfloop from="1" to="3" index="row"> | |
<li style="font-size:30px;"> | |
<cfloop from="#row#" to="9" step="3" index="step"> | |
<span style="margin-top:5px;font-size:40px;display:inline"> | |
#step# | |
</span> | |
</cfloop> | |
</li><br> | |
</cfloop> | |
</ul> | |
</cfoutput> | |
---> | |
<cfoutput> | |
<cfset last= listLast("one/twothreefour", "\/")> | |
#last# | |
</cfoutput> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment