slovo/examples/projects/std-layout-local-time/src/time.slo
2026-05-22 08:38:43 +02:00

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)