5 lines
90 B
V
5 lines
90 B
V
fn print_all(values []int) {
|
|
for i, x in values {
|
|
println("Item $i = $x")
|
|
}
|
|
}
|