fix 10.5.1

修改打印函数
This commit is contained in:
smart
2016-01-20 17:39:48 +08:00
parent d78be9ae6b
commit a0224fcdbe

View File

@@ -43,7 +43,7 @@ func main() {
// 使用结构体字面量
outer2 := outerS{6, 7.5, 60, innerS{5, 10}}
fmt.Printf("outer2 is:", outer2)
fmt.Println("outer2 is:", outer2)
}
```