Merge commit '11d2597b73c2237cb70b93622bfa707ca531b38c' into ja

This commit is contained in:
Shin Kojima
2013-12-25 02:52:51 +09:00

View File

@@ -88,6 +88,8 @@ JSONJavascript Object Notation是一种轻量级的数据交换语言
fmt.Println(k, "is string", vv)
case int:
fmt.Println(k, "is int", vv)
case float64:
fmt.Println(k,"is float64",vv)
case []interface{}:
fmt.Println(k, "is an array:")
for i, u := range vv {