DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / const17.go
1234567891011121314
package main import "fmt" var t [7/3]int func main() { t[0] = 3/2 t[1] = 5/2 fmt.Println(t) } // Output: // [1 2]