type Container struct 1type Container struct { 2 A int 3 B Stringer 4} Copy source Methods on Container func Print method on Container 1func (c *Container) Print() Copy source func Touch method on Container 1func (c *Container) Touch() *Container Copy source