時(shí)間: 2021年5月11日15:39:37
參考: 菜鳥教程
適合開發(fā)游戲谆焊?
1、開始
(1)安裝
地址:https://golang.org/dl/ 或者
https://golang.google.cn/dl/
(2)環(huán)境
Go\bin 文件夾路徑添加到環(huán)境變量中
(3)第一個(gè)代碼
創(chuàng)建文件test.go浦夷,輸入內(nèi)容:
package main
import "fmt"
func main(){
fmt.Println("OK, I here!")
}
輸入命令go run test.go
運(yùn)行辖试。
注: 大分號(hào)寫成下面這樣會(huì)報(bào)錯(cuò)
func main()
{
fmt.Println("OK, I here!")
}