1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/fmt/tests/array_static_keep.vv

15 lines
140 B
V

struct Board {
mut:
field [10][5]int
points int
shifts int
}
struct TileLine {
ypos int
mut:
field [5]int
points int
shifts int
}