Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
aliases
/
alias_map_test.v
9
lines
·
7
sloc
·
139 bytes
·
34c67878b94f005e76d21508f4f1e6653333dae5
Raw
1
module
main
2
3
type
Dict = map[string]string
4
5
fn
test_main() {
6
mut
x := Dict{}
7
x[
'foo'
] =
'bar'
8
assert
'${x}'
==
"Dict({'foo': 'bar'})"
9
}
10