blob: b0be1269a7efa0e344ae70a82ce3163df9f5eaeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module misc
import rand
import time
const (
start_time_unix = time.now().unix // start_time_unix is set when the program is started.
)
// random returns a random time struct in *the past*.
pub fn random() time.Time {
return time.unix(int(rand.i64n(misc.start_time_unix)))
}
|