Fix #254 typo error (#255)

This commit is contained in:
Bo-Yi Wu
2016-06-03 16:41:58 +08:00
committed by Unknwon
parent 294a0702bd
commit 26ee668b05

View File

@@ -9,6 +9,6 @@ func main() {
var test1 string var test1 string
test1 = pack1.ReturnStr() test1 = pack1.ReturnStr()
fmt.Printf("ReturnStr from package1: %s\n", test1) fmt.Printf("ReturnStr from package1: %s\n", test1)
fmt.Printf(Integer from package1: %d\n, pack1.Pack1Int) fmt.Printf("Integer from package1: %d\n", pack1.Pack1Int)
// fmt.Printf(“Float from package1: %f\n”, pack1.pack1Float) // fmt.Printf(“Float from package1: %f\n”, pack1.pack1Float)
} }