Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v4
/
vlib
/
v
/
checker
/
tests
/
immutable_arg.vv
16
lines
·
14
sloc
·
110 bytes
·
0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1
struct St {
2
mut:
3
e int
4
}
5
6
fn f(mut x St) {
7
x.e++
8
println(x)
9
}
10
11
fn main() {
12
a := St{
13
e: 2
14
}
15
f(mut a)
16
}
17