v2 / vlib / v / fmt / tests / chain_calls_with_comments_expected.vv
10 lines · 9 sloc · 167 bytes · bf44572f3005bca20254d07d685a7444232ca5d1
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