pantry/projects/github.com/vburenin/ifacemaker/human.go

10 lines
135 B
Go
Raw Normal View History

2023-07-27 17:04:37 +03:00
package main
type Human struct {
name string
}
// Returns the name of our Human.
func (h *Human) GetName() string {
return h.name
}