Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peppapig13132/a-tour-of-go
🌱 A Tour of Go
https://github.com/peppapig13132/a-tour-of-go
go golang
Last synced: 3 days ago
JSON representation
🌱 A Tour of Go
- Host: GitHub
- URL: https://github.com/peppapig13132/a-tour-of-go
- Owner: peppapig13132
- Created: 2024-07-17T04:36:05.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T04:09:57.000Z (3 months ago)
- Last Synced: 2024-09-18T10:08:32.127Z (about 2 months ago)
- Topics: go, golang
- Language: Go
- Homepage: https://go.dev/tour/list
- Size: 114 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Tour of Go
![Go!](https://github.com/peppapig13132/A-Tour-of-Go/raw/main/assets/image/go.png)
A Tour of Go: https://go.dev/tour/list
## Lessons
### Using the tour
- [x] Welcome! (5)### Basics
- [x] Packages, variables, and functions. (17)
- [x] Flow control statements: for, if, else, switch and defer (14)
- [x] More types: structs, slices, and maps. (27)### Methods and interfaces
- [x] Methods and interfaces (26)### Generics
- [x] Generics (3)### Concurrency
- [ ] Concurrency (11)## Install Go
Download and Install: https://go.dev/doc/install```
go install golang.org/x/website/tour@latest
```