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
Delyan Angelov 6d30697d9b time: move time.random() to time.misc module
avoids importing rand to programs that do not need pseudo random generation).
2020-01-07 12:58:24 +01:00

13 lines
214 B
V

module misc
import rand
import time
const (
start_time_unix = time.now().unix
)
// random will return a random time.Time in *the past*
pub fn random() time.Time {
return time.unix(rand.next(start_time_unix))
}