DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / struct9.go
1234567891011121314
package main type T struct { f int g int64 } func main() { a := T{7, 8} println(a.f, a.g) } // Output: // 7 8