v2 / vlib / v / slow_tests / inout / printing_struct_with_skip_fields.vv
9 lines · 8 sloc · 101 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1struct Foo {
2 age int @[str: skip]
3 name string
4}
5
6fn main() {
7 x := Foo{25, 'Peter'}
8 println(x)
9}
10