gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/a18.go (about) 1 package main 2 3 func main() { 4 a := []int64{1, 2, 3, 4} 5 for _, v := range a { 6 println(v) 7 } 8 } 9 10 // Output: 11 // 1 12 // 2 13 // 3 14 // 4