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

time: v fmt (#7160)

This commit is contained in:
Takahiro Yaota
2020-12-06 23:19:39 +09:00
committed by GitHub
parent 43ff93c25f
commit 0c50f0c9dc
14 changed files with 147 additions and 212 deletions

View File

@@ -6,6 +6,7 @@ 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)))