mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
11 lines
225 B
V
11 lines
225 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.i64n(start_time_unix) or { 0 }))
|
|
}
|