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

all: updateimport () and []array

This commit is contained in:
yuyi
2020-04-26 19:49:31 +08:00
committed by GitHub
parent 7b39ab6d06
commit 9f4d498ff1
59 changed files with 181 additions and 254 deletions

View File

@ -3,7 +3,7 @@ import rand
import time
fn show_u64s(a []u64){
mut res := []string
mut res := []string{}
for x in a {
res << x.str()
}
@ -32,5 +32,5 @@ fn test_splitmix64_reproducibility() {
len := randoms1.len
for i in 0..len {
assert randoms1[i] == randoms2[i]
}
}
}