Files
the-way-to-go_ZH_CN/eBook/examples/chapter_10/person2.go
2015-03-03 12:25:25 -05:00

18 lines
230 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
}