|
A function that can be used in Formulas.
clock
( )
t = clock()
for i to 1000
endfor
appendInfoLine: "Time elapsed: ", clock() - t, " seconds"
=>
Time elapsed: 0.00016024999786168337 seconds
t = clock()
for i to 1000
endfor
timeElapsed = clock() - t
appendInfoLine: "Time elapsed: ", fixed$ (1000 * timeElapsed, 3), " ms"
=>
Time elapsed: 0.159 ms
© Paul Boersma 2025