v/vlib/v/checker/tests/for_in_index_optional.vv

7 lines
73 B
V

import os
fn main() {
for file in os.ls('.') {
println(file)
}
}