cheatsheets
Go Mark 2
Sep 12, 2021
| 2 min read
|
Chris Zietlow
Recovering Software Engineer, Philomath, Shitty Photographer, Technologist, believes the oxford comma isn't optional.
Basic Struct
collections of fields
1type person struct {
2 first string
3 last string
4}
1humanPersona := person{
2 first: "James",
3 last: "Bond",
4}
5
6lName := humanPerson.last
Nested Struct
Structs can be nested
1type car struct {
2 brand string
3 model string
4 doors int β¦