Merge pull request #255 from Nastya-Kruglikova/patch-1
Golang example formatting fix and useful links added
This commit is contained in:
commit
599e26c10e
7
go.md
7
go.md
|
@ -26,7 +26,7 @@ func main() {
|
|||
fmt.Println(message)
|
||||
}
|
||||
|
||||
func greetMe(name string) (string) {
|
||||
func greetMe(name string) string {
|
||||
return "Hello, " + name + "!"
|
||||
}
|
||||
```
|
||||
|
@ -504,3 +504,8 @@ See: [Pointer receivers](https://tour.golang.org/methods/4)
|
|||
|
||||
- [A tour of Go](https://tour.golang.org/welcome/1) _(tour.golang.org)_
|
||||
- [Golang wiki](https://github.com/golang/go/wiki/) _(github.com)_
|
||||
- [Awesome Go](https://awesome-go.com/) _(awesome-go.com)_
|
||||
- [Go by Example](https://gobyexample.com/) _(gobyexample.com)_
|
||||
- [Effective Go](https://golang.org/doc/effective_go.html) _(golang.org)_
|
||||
- [JustForFunc Youtube](https://www.youtube.com/channel/UC_BzFbxG2za3bp5NRRRXJSw) _(youtube.com)_
|
||||
- [Style Guide](https://github.com/golang/go/wiki/CodeReviewComments) _(github.com)_
|
||||
|
|
Loading…
Reference in New Issue