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 4733eb7 commit dda9e9bCopy full SHA for dda9e9b
go.md
@@ -82,8 +82,8 @@ Modules are now released with GO 1.12 and above
82
83
Create a module
84
```bash
85
-[dev] ~/Study/go/helloworld$ go mod init github.com/you/helloworld
86
-go: creating new go.mod: module github.com/you/helloworld
+[dev] ~/Study/go/helloworld$ go mod init helloworld
+go: creating new go.mod: module helloworld
87
[dev] ~/Study/go/helloworld$ touch main.go
88
```
89
@@ -100,6 +100,8 @@ func main() {
100
}
101
102
103
+NOTE: adding a new line with fmt. should give you intellisense
104
+
105
build and run
106
107
[dev] ~/Study/go/helloworld$ gr
0 commit comments