This commit is contained in:
Unknwon
2015-09-10 10:04:22 -04:00
parent c1b14feb5c
commit 9fa55f9c38

View File

@@ -83,7 +83,7 @@ type B struct {
func main() {
b := B{A{1, 2}, 3.0, 4.0}
fmt.Println(b.ax, b.ay, b.bx, b.by)
fmt.Println((b.A))
fmt.Println(b.A)
}
```