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
2020-12-06 15:19:39 +01:00

14 lines
219 B
V

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