RosettaCodeData/Task/Constrained-genericity/Go/constrained-genericity-3.go
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

6 lines
123 B
Go

type peelfirst string
func (f peelfirst) eat() {
// peel code goes here
fmt.Println("mm, that", f, "was good!")
}