9 lines
163 B
Plaintext
9 lines
163 B
Plaintext
(module time (export monotonic_ms sleep_ms_zero))
|
|
|
|
(fn monotonic_ms () -> i32
|
|
(std.time.monotonic_ms))
|
|
|
|
(fn sleep_ms_zero () -> i32
|
|
(std.time.sleep_ms 0)
|
|
0)
|