Files
moxa/_test/struct9.go
2018-11-27 15:19:40 +01:00

15 lines
117 B
Go

package main
type T struct {
f int
g int64
}
func main() {
a := T{7, 8}
println(a.f, a.g)
}
// Output:
// 7 8