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

make v build-examples work: part 1

This commit is contained in:
Alexander Medvednikov
2020-06-02 16:09:41 +02:00
parent 78f8a8aee6
commit 4e51867612
8 changed files with 20 additions and 20 deletions

View File

@@ -7,7 +7,7 @@ const (
)
fn main() {
rand.seed(time.now().unix)
rand.seed(int(time.now().unix))
rand.next(gen_max) // skip the first
mut arr := []int{}
for _ in 0..gen_len {