Merge pull request #213 from sevensmall/patch-2

修改日文你好的英文字母
This commit is contained in:
astaxie
2013-06-18 20:46:08 -07:00

View File

@@ -129,7 +129,7 @@ Go对于已声明但未使用的变量会在编译阶段报错比如下面的
var emptyString string = "" // 声明了一个字符串变量,初始化为空字符串
func test() {
no, yes, maybe := "no", "yes", "maybe" // 简短声明,同时声明多个变量
japaneseHello := "Ohaiou" // 同上
japaneseHello := "Konichiwa" // 同上
frenchHello = "Bonjour" // 常规赋值
}