We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 336b80d commit ab53ac7Copy full SHA for ab53ac7
go/README.md
@@ -1,30 +1,31 @@
1
Golang
2
3
-## Install
+最新官网 Go.dev https://go.dev
4
5
-[golang.org](https://golang.org)
+## Install
6
7
-[golang.google.cn](https://golang.google.cn)
+[golang.org](https://golang.org)
8
+[golang.google.cn](https://golang.google.cn) 国内镜像
9
10
-check version:
11
+查看版本 check version:
12
13
```go
14
$ which go
15
/usr/local/go/bin/go
16
17
$ go version
-go1.15.6 darwin/amd64
18
+go version go1.18 darwin/amd64
19
```
20
21
22
## Write some code
23
-create directory `go`:
24
+create directory `helloworld`:
25
26
-$ mkdir go
27
-$ cd go
+$ mkdir helloworld
28
+$ cd helloworld
29
30
31
create file `main.go` :
0 commit comments