Files
the-way-to-go_ZH_CN/eBook/examples/chapter_10/person2.go

15 lines
210 B
Go

package person
type Person struct {
firstName string
lastName string
}
func (p *Person) FirstName() string {
return p.firstName
}
func (p *Person) SetFirstName(newName string) {
p.firstName = newName
}