1.go语言环境安装
找windows下面的msi文件下载安装即可。注意位数哟~
安装完这个你就可以在命令行下面运行go程序啦:go run test.go
package main
import (
"fmt"
)
func main(){
fmt.Println("hello world")
}
2.eclipse安装
(1)安装JDK
安装eclipse之前需要安装JDK,下载地址:https://www.oracle.com/technetwork/java/javase/downloads/index.html
(2)安装Eclipse
(3)设置&运行第一个helloworld
参考博客: