summary refs log tree commit diff stats
path: root/tests/misc/tgetstartmilsecs.nim
blob: bf508dd543fc8830218d26919f1f3a0cb7228d54 (plain) (blame)
1
2
3
4
5
6
7
#
import times, os

var start = epochTime()
os.sleep(1000)

echo epochTime() - start #OUT 1000