From 8661fbf9ca7774df4193b9e2888961a7a2a7ea04 Mon Sep 17 00:00:00 2001 From: Shin Kojima Date: Wed, 25 Dec 2013 02:53:04 +0900 Subject: [PATCH] [ja] apply patch --- ja/ebook/07.2.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ja/ebook/07.2.md b/ja/ebook/07.2.md index 224247b5..2b6b9f8a 100644 --- a/ja/ebook/07.2.md +++ b/ja/ebook/07.2.md @@ -89,6 +89,8 @@ JSON(Javascript 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 {