修改例子的输出错误 (#559)

This commit is contained in:
xd
2018-12-17 12:18:36 +08:00
committed by 无闻
parent aadf4f12fe
commit 77a83f52c3

View File

@@ -106,11 +106,11 @@ func main() {
Parsing "1 2 3 4 5": Parsing "1 2 3 4 5":
[1 2 3 4 5] [1 2 3 4 5]
Parsing "100 50 25 12.5 6.25": Parsing "100 50 25 12.5 6.25":
pkg parse: error parsing "12.5" as int pkg: pkg parse: error parsing "12.5" as int
Parsing "2 + 2 = 4": Parsing "2 + 2 = 4":
pkg parse: error parsing "+" as int pkg: pkg parse: error parsing "+" as int
Parsing "1st class": Parsing "1st class":
pkg parse: error parsing "1st" as int pkg: pkg parse: error parsing "1st" as int
Parsing "": Parsing "":
pkg: no words to parse pkg: no words to parse
``` ```