1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/time/time_lin.v
2019-06-22 20:20:28 +02:00

16 lines
164 B
Go

module time
// in ms
fn ticks() double {
return double(0)
}
fn sleep(seconds int) {
C.sleep(seconds)
}
fn sleep_ms(seconds int) {
C.usleep(seconds * 1000)
}