vq / vlib / v / fmt / tests / chain_calls_with_comments_input.vv
10 lines · 9 sloc · 221 bytes
Raw
1fn main() {
2 options := cmdline
3 .only_options(args)
4 .filter(it != '-') // options, not including '-'
5 .map(if it.bytes().len>1{
6 1
7 })
8
9 println(options)
10}
11