DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / const1.go
123456789101112131415
package main type T struct { a int b string } var t = T{1, "hello"} func main() { println(t.a, t.b) } // Output: // 1 hello