Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
map_option_key_err.vv
10
lines
·
9
sloc
·
143 bytes
·
9989453673ee8cb6a3324abb16f551669d9c4768
Raw
1
import rand.cuid2
2
3
fn main() {
4
mut m := map[string]int{}
5
mut c := cuid2.new()
6
key := c.next()
7
_ = m[c.next()]
8
m[c.next()] = 1
9
m[key]++
10
}
11