mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
rand: reorganize: phase 2
This commit is contained in:
@ -12,11 +12,11 @@ fn main() {
|
||||
println('Generating $sample_size strings between $min_str_len - $max_str_len chars long...')
|
||||
mut bytepile := []byte{}
|
||||
for _ in 0 .. sample_size * max_str_len {
|
||||
bytepile << byte(40 + rand.next(125 - 40))
|
||||
bytepile << byte(rand.int_in_range(40, 125))
|
||||
}
|
||||
mut str_lens := []int{}
|
||||
for _ in 0 .. sample_size {
|
||||
str_lens << min_str_len + rand.next(max_str_len - min_str_len)
|
||||
str_lens << rand.int_in_range(min_str_len, max_str_len)
|
||||
}
|
||||
println('Hashing each of the generated strings...')
|
||||
t0 := time.ticks()
|
||||
|
Reference in New Issue
Block a user