Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
modules
/
staticfnref
/
staticfnref.v
12
lines
·
10
sloc
·
141 bytes
·
3bca6e80b914aee9bfe2a9d94a0566ac704676c0
Raw
1
module
staticfnref
2
3
pub
struct
MyStruct {
4
pub
:
5
value int
6
}
7
8
pub
fn
MyStruct.new(value int) MyStruct {
9
return
MyStruct{
10
value: value
11
}
12
}
13