v2 / vlib / v / tests / options / modules / another_module / module.v
12 lines · 10 sloc · 154 bytes · 6488041a749df9762348d019c4223908c476f2e2
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