v2 / vlib / v / tests / modules / another_module / module.v
12 lines · 10 sloc · 154 bytes · caa0e25939493aaae571772dc24072f4726bd716
Raw
1module another_module
2
3pub struct SomeStruct {
4pub mut:
5 x int
6 y int
7 z int
8}
9
10pub fn (s SomeStruct) some_method() int {
11 return 999 + s.x + s.y + s.z
12}
13