For discussion over voice. Some sample code for us to look at together (which I will explain as needed over voice): ```go package p type Struct struct { X int `json:"x,omitempty" yaml:"x,flow" xml:"x"` Y int `non-standard tag` a, b string T struct { a [1]int } EmbeddedType fmt.Stringer *EmbeddedPointerType } type Interface interface { F() io.Reader } type Constraint interface { ~int | int64 io.Writer } ```
Activity