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

14 lines
279 B
V
Raw Normal View History

module misc
import rand
import time
const (
2021-01-13 17:30:54 +03:00
start_time_unix = time.now().unix // start_time_unix is set when the program is started.
)
2020-12-06 17:19:39 +03:00
2020-02-06 16:19:44 +03:00
// random returns a random time struct in *the past*.
pub fn random() time.Time {
2021-01-25 12:26:20 +03:00
return time.unix(int(rand.u64n(misc.start_time_unix)))
}