Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
str_method_0_arguments.vv
11
lines
·
9
sloc
·
110 bytes
·
0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1
struct Zzz {
2
x int
3
}
4
5
fn (z Zzz) str(x int) string {
6
return 'z: ${z.x}'
7
}
8
9
fn main() {
10
println(Zzz{123})
11
}
12