mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
8 lines
95 B
Nim
8 lines
95 B
Nim
#
|
|
import times, os
|
|
|
|
var start = epochTime()
|
|
os.sleep(1000)
|
|
|
|
echo epochTime() - start #OUT 1000
|