mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2025-04-13 05:50:59 +00:00
13 lines
116 B
Go
13 lines
116 B
Go
package main
|
|
|
|
func main() {
|
|
|
|
}
|
|
|
|
type Dog struct {
|
|
Name string
|
|
}
|
|
|
|
func (d *Dog) GetName() string {
|
|
return d.Name
|
|
}
|