2018-01-25 10:51:40 +10:00

14 lines
116 B
Go

package main
func main() {
}
type Dog struct {
Name string
}
func (d *Dog) GetName() string {
return d.Name
}