Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
mut_receiver.vv
13
lines
·
13
sloc
·
157 bytes
·
1b09954622a09eb2072883738b89331e0bf77424
Raw
1
struct Foo{
2
mut:
3
name string
4
}
5
fn (f mut Foo) info() {
6
f.name = 'foo'
7
}
8
fn (mut f &Foo) info2() {
9
f.name = 'foo'
10
}
11
fn main() {
12
println('hello, world')
13
}
14