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

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

echo getStartMilsecs() - start #OUT 1000