v/vlib/v/fmt/tests/chain_calls_with_comments_i...

11 lines
221 B
V

fn main() {
options := cmdline
.only_options(args)
.filter(it != '-') // options, not including '-'
.map(if it.bytes().len>1{
1
})
println(options)
}