Fastest method Timing

BlitzMax Forums/BlitzMax Beginners Area/Fastest method Timing

Chroma(Posted 2010) [#1]
Anyone have a somewhat advanced piece of code that times another piece of code for speed?


GfK(Posted 2010) [#2]
Why does it need to be advanced? What is 'advanced' anyway?

I do this:
Local s:Int = Millisecs()
'do stuff here
Print "Time Taken:" + (Millisecs() - s)