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

time: reorganize module

This commit is contained in:
Alexey
2020-02-06 16:19:44 +03:00
committed by GitHub
parent d9e92a08cb
commit 65744207fc
8 changed files with 406 additions and 404 deletions

View File

@@ -6,7 +6,7 @@ import time
const (
start_time_unix = time.now().unix
)
// random will return a random time.Time in *the past*
// random returns a random time struct in *the past*.
pub fn random() time.Time {
return time.unix(rand.next(start_time_unix))
}