Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v
/
vlib
/
v2
/
gen
/
cleanc
/
tests
/
soa_struct.v
13
lines
·
11
sloc
·
202 bytes
·
ffe664050347ccd36d6c4f07b65a4ed652ad4ed8
Raw
1
module
main
2
3
@[soa]
4
struct
Vec2 {
5
x f32
6
y f32
7
}
8
9
fn
main() {
10
// Test that the SOA struct definition is generated
11
// The companion type Vec2_SOA should be available
12
println(
'soa_struct test: ok'
)
13
}
14