Go 编写第一个Hello world
Posted boonya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go 编写第一个Hello world相关的知识,希望对你有一定的参考价值。
目录
注意:编写可运行的hello world必须放入main包下。
编写main方法
package main
import "fmt"
func main()
fmt.Println("Hello world!")
目录结构
调试和运行
调试和运行,跟java语言一样。
执行结果:
以上是关于Go 编写第一个Hello world的主要内容,如果未能解决你的问题,请参考以下文章
TDD测试驱动开发:Hello, YOU -- 通过简单的 hello_test.go 程序学会编写测试,学习使用常量来优化并根据需要重构(谁说hello world就只是 hello world?)
iOS 11开发教程编写第一个iOS11代码Hello,World