GolangStudy-002-HelloWorld
Posted DreamLife.
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GolangStudy-002-HelloWorld相关的知识,希望对你有一定的参考价值。
今天的内容很简单,就是使用Go语言来实现HellWorld程序。
关键字:
Go
、Hello World
、源码
、Golang
、Gitgub
1 HelloWorld程序
又到了程序员经典时刻,“Hello World”程序
1.1 写Hello World代码
这个代码目前还不知道搞啥,先复制进来
package main
import(
"fmt"
)
func main() {
fmt.Println("Hello World!")
}
1.2 运行结果
在终端里面运行下面代码
go run HelloWorld.go
看下执行结果
好了,第一个Hell World程序就完成了。
☞ 源码
源码地址GolangStudy
使用方法:☟☟☟
以上是关于GolangStudy-002-HelloWorld的主要内容,如果未能解决你的问题,请参考以下文章