Post details
Go method receivers should just default to `self`. I should be able to do the following. func (Person) Name() string { return self.Name } If need to change the receiver name I can just use the existing syntax. func (p Person) Name() string { return p.Name } Don't @ me. You're wrong!










