> I cant find any timers on nim manual. But i found times module.

Why would you expect timers in the Nim manual? Nim is not a kind of virtual 
basic which may integrate all the user stuff into the language.

And when you have already times module, you may inspect its functions:

[https://nim-lang.org/docs/times.html#getTime](https://nim-lang.org/docs/times.html#getTime)

It is specified with ns resolution, and is often used for benchmark tests. Of 
course you use it with deltas, like t0 = getTime(), ... , echo "Elapsed:", 
getTime - t0. 

Reply via email to