1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/main.v

7 lines
97 B
V
Raw Normal View History

fn main() {
list := [1,2,3].filter(stringsss(it))
}
fn stringsss(arg int) string {
return ''
}