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