Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
gen
/
c
/
testdata
/
heap_struct_init.vv
9
lines
·
8
sloc
·
97 bytes
·
1b991893b6d89e69e36970f5f1c15984f6526e89
Raw
1
struct Foo {
2
x string
3
y string
4
}
5
6
fn main() {
7
foo := &Foo{'x', 'y'}
8
println(foo.x + foo.y)
9
}
10