starting go by example

This commit is contained in:
2021-12-31 15:36:34 +01:00
parent bafba8a7b6
commit afe165089d
11 changed files with 340 additions and 0 deletions

18
5-go-by-example/readme.md Normal file
View File

@@ -0,0 +1,18 @@
# Go by example
Go has different learning paths of which one is [Go by example](https://gobyexample.com/).
Here are all files with notations and more.
How to use the files:
```bash
# compile and run in the folder
go run <filename>.go
# build binary from file; after that run binary
go build <filename>.go
./<filename>
```
The code and structure is work of Mark McGranaghan and licensed under a Creative Commons Attribution 3.0 Unported License.
The Go Gopher is copyright Renée French. The original repository can be found on [Github](https://github.com/mmcgrana/gobyexample)