Struct
- Struct and type
- Struct with partial information (default values)
- Slice of structs
- Anonymous struct
- Struct in a struct
- composition via embedding instead of inheritance
- Tags and introspection (reflect)
- use cleanenv
- methods
- method of int
- map keys method
- method gets copy of struct
- method pass pointer of struct
- Exercise: read-csv-struct
- Exercise: implement 2D point and move
- Exercise: implement 3D point and move
- Exercise: implement wc
- Solution: implement wc