v/vlib/v/checker/tests/for_in_index_type.vv

5 lines
44 B
V
Raw Normal View History

fn main() {
for a in 52 {
println(a)
}
}