Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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