Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amazingandyyy/learn-golang-with-stephen
Codes when I followed Stephen's Go: The Complete Developer Guide course on udemy
https://github.com/amazingandyyy/learn-golang-with-stephen
go golang golang-library ioutil
Last synced: about 2 months ago
JSON representation
Codes when I followed Stephen's Go: The Complete Developer Guide course on udemy
- Host: GitHub
- URL: https://github.com/amazingandyyy/learn-golang-with-stephen
- Owner: amazingandyyy
- Created: 2017-09-18T03:55:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-21T07:28:22.000Z (about 7 years ago)
- Last Synced: 2024-10-12T18:53:14.396Z (2 months ago)
- Topics: go, golang, golang-library, ioutil
- Language: Go
- Homepage: https://www.udemy.com/certificate/UC-B2MTH5TL/
- Size: 671 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-golang-repositories - learn-golang-with-stephen
README
# learn-golang
### Packages
- ioutil - ioutil.ReadFile, ioutil.WriteFile
- os - os.Exit(1)
- strings - strings.Join([]string(d), ", "), strings.Split(string(bs), ", ")
- time - time.Now().UnixNano()
- rand -### golang features
- type - custom type
- struct is like object in js
- map looks like this [string]string
- interface make a new type
- for i := range d {}
- slice - []string