Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 700 Bytes

Go.md

File metadata and controls

37 lines (23 loc) · 700 Bytes

基础

基本概念

使用

安装

随机参考官方文档了。

官方代码仓库 官方文档 下载

安装,对 windows 而言直接下安装包无脑 next 即可。检查安装:

go version
go env

vscode

vscode 的话,直接安装名为 go 的插件。参考。GOPATH 环境变量会自己好,不用管。

设置 GOROOT 环境变量

配置插件:右击插件-扩展设置。

测试代码:(hello.go)

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