[ja] apply patch

This commit is contained in:
Shin Kojima
2013-12-25 02:53:04 +09:00
parent 38d670524a
commit 8661fbf9ca

View File

@@ -89,6 +89,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 {