其他分享
首页 > 其他分享> > Go:helloword

Go:helloword

作者:互联网

Go介绍

特性:

下载

https://go.dev/dl/

image-20220121164755624

然后安装,执行 go env

image-20220121165526731

hello word

设置GoPath

image-20220121171433840

编写main方法:

package main

import "fmt"

func main() {
	fmt.Println("hello world")
}

运行:

image-20220121171931553

标签:helloword,面向对象,fmt,go,Go,main,hello
来源: https://www.cnblogs.com/wwjj4811/p/15831080.html