https://github.com/softleader/hello-go
https://github.com/softleader/hello-go
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/softleader/hello-go
- Owner: softleader
- Created: 2018-05-10T05:49:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-08T08:02:36.000Z (almost 7 years ago)
- Last Synced: 2025-01-18T04:26:26.109Z (4 months ago)
- Language: Go
- Size: 28.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hello-go
> SoftLeader Golang Training
## Getting Started
- Environment Setup
- https://golang.org/doc/code.html
- IDE
- Run & Build
- https://golang.org/doc/install/source#environment
## A Simple Start- Hello Go
- Imports
- Packages
- https://golang.org/pkg/
- API
- https://golang.org/pkg/builtin/
## Basics- loop
- break, continue, label
- switch
- if
- slice
- map
- struct
- interface
- receiver
- testing## Deep into Go
- embedding struct
- must
- defer
- error
- pass by value
- pointer
- marshal & unmarshal## Advanced Go
- panic & recover
- goroutine
- channel
- template
- ...