Go 经典入门系列2:Hello World
来源:admin
发布时间:2022-08-22 10:29:36
点击数:
package main
import "fmt"
func main() {
fmt.Println("Hello World")
}
使用 go run 命令 - 在命令提示符旁,输入 go run helloworld.go。
使用 go install 命令 - 运行 go install hello,接着可以用 $GOPATH/bin/hello 来运行该程序。 第 3 种运行程序的好方法是使用 go playground。尽管它有自身的限制,但该方法对于运行简单的程序非常方便。我已经在 playground 上创建了一个 hello world 程序。点击这里[3] 在线运行程序。你可以使用 go playground[4] 与其他人分享你的源代码。
package main //1
import "fmt" //2
func main() { //3
fmt.Println("Hello World") //4
}
链接:https://golangbot.com/hello-world/
(版权归原作者所有,侵删)