Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
modules
/
another_module
/
module.v
12
lines
·
10
sloc
·
154 bytes
·
caa0e25939493aaae571772dc24072f4726bd716
Raw
1
module
another_module
2
3
pub
struct
SomeStruct {
4
pub
mut
:
5
x int
6
y int
7
z int
8
}
9
10
pub
fn
(s SomeStruct) some_method() int {
11
return
999 + s.x + s.y + s.z
12
}
13