vxx2 / vlib / v / checker / tests / for_in_index_option.vv
7 lines · 6 sloc · 70 bytes · 90941b3b1f5513cef7f913bc54f1b5a2af0c8c7a
Raw
1import os
2
3fn main() {
4 for file in os.ls('.') {
5 println(file)
6 }
7}
8