Hi all, I need to measure the time difference of mouse down event and mouse up
event. So I want to start a timer in the mouse down event and then in the mouse
up event, i want to stop the timer and get the time difference. And i want the
time difference in milliseconds or micro seconds. I cant find any timers on nim
manual. But i found times module. Some on IRC chat suggest me to use "now()" on
both events and get the difference. But what is the datatype of "now1() -
now2()" ? Is that fast enough ?