14 lines
116 B
Go
Raw Normal View History

2018-01-25 10:51:40 +10:00
package main
func main() {
}
type Dog struct {
Name string
}
func (d *Dog) GetName() string {
return d.Name
}