Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
aliases
/
modules
/
value
/
value.v
11
lines
·
8
sloc
·
127 bytes
·
16f5f45d5f6b511508c6b42dbcb2589fd1fef69b
Raw
1
module
value
2
3
pub
interface
Value {
4
str() string
5
}
6
7
pub
type
List = []Value
8
9
pub
fn
(x List) str() string {
10
return
x.str()
11
}
12