gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/a15.go (about) 1 package main 2 3 import "fmt" 4 5 const size = 12 6 7 func main() { 8 var buf [size]int 9 fmt.Println(buf[:]) 10 } 11 12 // Output: 13 // [0 0 0 0 0 0 0 0 0 0 0 0]