Alex

m# Matt Holiday Go Class (YouTube) Notes from learning the fundamentals of the Go programming language from this amazing tutorial. It is a fantastic video tutorial on YouTube that explains Go concepts from the ground up and offers some great insight into the language design

Notes

Arrays and Slices

Maps

if w, ok := p[“the”]; ok { // Useful if we want to do something if an entry is / isn’t in the map } ```

Various Builtin Functions

Reproduced from https://www.youtube.com/watch?v=T0Xymg0_aSU

nil