1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

time_lin.v: f64

This commit is contained in:
Alexander Medvednikov 2019-06-25 22:20:51 +02:00
parent f3f24b25bb
commit c545bc62a7

View File

@ -5,8 +5,8 @@
module time
// in ms
fn ticks() double {
return double(0)
fn ticks() f64 {
return f64(0)
}
fn sleep(seconds int) {