Created
February 12, 2026 17:58
-
-
Save trycf/830070ace1fe66c20a1d36893edf79a4 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
| <cfscript> | |
| startTime = getTickCount(); | |
| arr = []; | |
| for (var i = 1; i <= 9999; i++) { | |
| arrayappend(arr,i); | |
| } | |
| endTime = getTickCount(); | |
| Time = endTime - startTime; | |
| writeoutput(Time); | |
| </cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment