go chapter 1

Posted webglcn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go chapter 1相关的知识,希望对你有一定的参考价值。

 

// helloworld.go
package main

import "fmt"

func main() {
    fmt.Println("Hello,	世界") 
}

 

go run helloworld.go

go build helloworldgo
./helloworld

 

以上是关于go chapter 1的主要内容,如果未能解决你的问题,请参考以下文章

go chapter 7 - 类型

go chapter 9 - 反射

你知道的Go切片扩容机制可能是错的

go chapter 4 - 不定长参数

Go 汇编入门

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础