mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
rand: simplify rand.PRNG, move to optional types for error handling (#13570)
This commit is contained in:
@ -8,7 +8,7 @@ const (
|
||||
fn main() {
|
||||
mut arr := []int{}
|
||||
for _ in 0 .. gen_len {
|
||||
arr << rand.intn(gen_max)
|
||||
arr << rand.intn(gen_max) or { 0 }
|
||||
}
|
||||
println('length of random array is $arr.len')
|
||||
println('before quick sort whether array is sorted: ${is_sorted<int>(arr)}')
|
||||
|
Reference in New Issue
Block a user